summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2023-04-18 17:27:08 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-04-19 13:04:12 +0000
commitab87258d72ab545f42d17ead1c66aea042867d9f (patch)
tree9f2aaa52a2864eed150cc1973fdc2df0c49bba7d
parent5ddd0ad9b3ecc1a82e53aac68e0d1003fe71ee06 (diff)
downloadqtwebengine-ab87258d72ab545f42d17ead1c66aea042867d9f.tar.gz
Stop disabling optimization of V8
It is no longer necessary to build successfully, and improves loading times in debug mode. Task-number: QTBUG-110504 Change-Id: If2a49fc96aaa113a90d5573371069754da354f7a Reviewed-by: Michal Klocek <michal.klocek@qt.io> (cherry picked from commit 9c4782e178f3798d006e79f3b340b722556b9f8a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-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)