summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common.gypi3
-rwxr-xr-xconfigure.py8
2 files changed, 7 insertions, 4 deletions
diff --git a/common.gypi b/common.gypi
index bacd496538..d9a0ac6727 100644
--- a/common.gypi
+++ b/common.gypi
@@ -28,9 +28,6 @@
'openssl_fips%': '',
- # Default to -O0 for debug builds.
- 'v8_optimized_debug%': 0,
-
# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.7',
diff --git a/configure.py b/configure.py
index 5bc53630f3..05a7fbc4cc 100755
--- a/configure.py
+++ b/configure.py
@@ -566,6 +566,12 @@ parser.add_option('--verbose',
default=False,
help='get more output from this script')
+parser.add_option('--v8-non-optimized-debug',
+ action='store_true',
+ dest='v8_non_optimized_debug',
+ default=False,
+ help='compile V8 with minimal optimizations and with runtime checks')
+
# Create compile_commands.json in out/Debug and out/Release.
parser.add_option('-C',
action='store_true',
@@ -1138,7 +1144,7 @@ def configure_library(lib, output):
def configure_v8(o):
o['variables']['v8_enable_gdbjit'] = 1 if options.gdb else 0
o['variables']['v8_no_strict_aliasing'] = 1 # Work around compiler bugs.
- o['variables']['v8_optimized_debug'] = 0 # Compile with -O0 in debug builds.
+ o['variables']['v8_optimized_debug'] = 0 if options.v8_non_optimized_debug else 1
o['variables']['v8_random_seed'] = 0 # Use a random seed for hash tables.
o['variables']['v8_promise_internal_field_count'] = 1 # Add internal field to promises for async hooks.
o['variables']['v8_use_snapshot'] = 'false' if options.without_snapshot else 'true'