File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -299,6 +299,11 @@ parser.add_option('--enable-d8',
299
299
dest=' enable_d8' ,
300
300
help=optparse.SUPPRESS_HELP) # Unsupported, undocumented.
301
301
302
+ parser.add_option(' --enable-trace-maps' ,
303
+ action=' store_true' ,
304
+ dest=' trace_maps' ,
305
+ help=' Enable the --trace-maps flag in V8 (use at your own risk)' )
306
+
302
307
parser.add_option(' --v8-options' ,
303
308
action=' store' ,
304
309
dest=' v8_options' ,
@@ -964,6 +969,7 @@ def configure_v8(o):
964
969
o[' variables' ][' v8_optimized_debug' ] = 0 # Compile with -O0 in debug builds.
965
970
o[' variables' ][' v8_random_seed' ] = 0 # Use a random seed for hash tables.
966
971
o[' variables' ][' v8_use_snapshot' ] = ' false' if options.without_snapshot else ' true'
972
+ o[' variables' ][' v8_trace_maps' ] = 1 if options.trace_maps else 0
967
973
o[' variables' ][' node_use_v8_platform' ] = b(not options.without_v8_platform)
968
974
o[' variables' ][' node_use_bundled_v8' ] = b(not options.without_bundled_v8)
969
975
o[' variables' ][' force_dynamic_crt' ] = 1 if options.shared else 0
Original file line number Diff line number Diff line change 1
1
{
2
2
'variables' : {
3
3
'v8_use_snapshot%' : 'false' ,
4
+ 'v8_trace_maps%' : 0 ,
4
5
'node_use_dtrace%' : 'false' ,
5
6
'node_use_lttng%' : 'false' ,
6
7
'node_use_etw%' : 'false' ,
You can’t perform that action at this time.
0 commit comments