|
|
@ -1,7 +1,7 @@ |
|
|
|
diff -urN a/configure.py b/configure.py
|
|
|
|
--- a/configure.py 2019-09-05 00:36:21.000000000 +0900
|
|
|
|
+++ b/configure.py 2019-09-27 11:49:55.445800884 +0900
|
|
|
|
@@ -1223,6 +1223,25 @@
|
|
|
|
@@ -1276,6 +1276,23 @@
|
|
|
|
options.build_v8_with_gn = FetchDeps(v8_path) |
|
|
|
o['variables']['build_v8_with_gn'] = b(options.build_v8_with_gn) |
|
|
|
|
|
|
@ -17,17 +17,15 @@ diff -urN a/configure.py b/configure.py |
|
|
|
+ elif target_arch in ('mipsel', 'mips64el'):
|
|
|
|
+ o['variables']['v8_enable_embedded_builtins'] = 0
|
|
|
|
+ elif target_arch == 'x64':
|
|
|
|
+ if options.with_intl in (None, 'none'):
|
|
|
|
+ o['variables']['v8_enable_embedded_builtins'] = 1
|
|
|
|
+ if options.with_intl not in (None, 'none'):
|
|
|
|
+ o['variables']['v8_enable_embedded_builtins'] = 0
|
|
|
|
+ elif target_arch == 'ia32':
|
|
|
|
+ if options.with_intl in (None, 'none'):
|
|
|
|
+ o['variables']['v8_use_snapshot'] = 'false'
|
|
|
|
+ else:
|
|
|
|
+ o['variables']['v8_enable_embedded_builtins'] = 0
|
|
|
|
|
|
|
|
def configure_openssl(o): |
|
|
|
variables = o['variables'] |
|
|
|
@@ -1654,6 +1673,7 @@
|
|
|
|
@@ -1713,6 +1732,7 @@
|
|
|
|
configure_intl(output) |
|
|
|
configure_static(output) |
|
|
|
configure_inspector(output) |
|
|
|