summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2023-04-18 17:27:08 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2023-04-18 18:04:24 +0000
commit9c4782e178f3798d006e79f3b340b722556b9f8a (patch)
treee72e5808c6961e200beb163ff3289961b43a1891 /cmake
parentc228e708678f32ced2efb26b9dfb24a515e8e4f7 (diff)
Stop disabling optimization of V8
It is no longer necessary to build successfully, and improves loading times in debug mode. Pick-to: 6.5 Task-number: QTBUG-110504 Change-Id: If2a49fc96aaa113a90d5573371069754da354f7a Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Functions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Functions.cmake b/cmake/Functions.cmake
index 7562bffb6..25997d7f1 100644
--- a/cmake/Functions.cmake
+++ b/cmake/Functions.cmake
@@ -846,7 +846,7 @@ macro(append_build_type_setup)
if(${config} STREQUAL "Debug")
list(APPEND gnArgArg is_debug=true symbol_level=2)
if(WIN32)
- list(APPEND gnArgArg enable_iterator_debugging=true v8_optimized_debug=false)
+ list(APPEND gnArgArg enable_iterator_debugging=true)
endif()
elseif(${config} STREQUAL "Release")
list(APPEND gnArgArg is_debug=false symbol_level=0)