Skip to content

Commit f53c479

Browse files
committed
fixup! build: enable Temporal by default
Signed-off-by: Richard Lau <richard.lau@ibm.com>
1 parent f5d531d commit f53c479

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

configure.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2090,6 +2090,10 @@ def configure_v8(o, configs):
20902090
o['variables']['v8_enable_external_code_space'] = 1 if options.enable_pointer_compression else 0
20912091
o['variables']['v8_enable_31bit_smis_on_64bit_arch'] = 1 if options.enable_pointer_compression else 0
20922092
o['variables']['v8_enable_extensible_ro_snapshot'] = 0
2093+
# Temporal relies on ICU.
2094+
if (options.with_intl == 'none'):
2095+
warn('--with-intl=none specified. Support for Temporal will be disabled.')
2096+
options.v8_disable_temporal_support = True
20932097
o['variables']['v8_enable_temporal_support'] = 0 if options.v8_disable_temporal_support else 1
20942098
o['variables']['v8_trace_maps'] = 1 if options.trace_maps else 0
20952099
o['variables']['node_use_v8_platform'] = b(not options.without_v8_platform)

0 commit comments

Comments
 (0)