8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b9a637 commit 69ec9d8Copy full SHA for 69ec9d8
configure.py
@@ -1668,7 +1668,7 @@ def configure_v8(o, configs):
1668
o['variables']['v8_enable_short_builtin_calls'] = 1
1669
if options.v8_enable_snapshot_compression:
1670
o['variables']['v8_enable_snapshot_compression'] = 1
1671
- if options.v8_enable_object_print and options.v8_disable_object_print:
+ if all(opt in sys.argv for opt in ['--v8-enable-object-print', '--v8-disable-object-print']):
1672
raise Exception(
1673
'Only one of the --v8-enable-object-print or --v8-disable-object-print options '
1674
'can be specified at a time.')
0 commit comments