Browse Source

configure: fix v8 overriding commands on build

V8 seems to ignore the default value for want_separate_host_toolset and
would override it at build time. Instead always explicitly set the value.

Fixes #7833
v0.10.30-release
Trevor Norris 11 years ago
parent
commit
449ffecbb0
  1. 2
      configure

2
configure

@ -473,6 +473,8 @@ def configure_node(o):
if target_arch != host_arch and not options.without_snapshot: if target_arch != host_arch and not options.without_snapshot:
o['variables']['want_separate_host_toolset'] = 1 o['variables']['want_separate_host_toolset'] = 1
else:
o['variables']['want_separate_host_toolset'] = 0
if target_arch == 'arm': if target_arch == 'arm':
configure_arm(o) configure_arm(o)

Loading…
Cancel
Save