Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-12-20 01:41:04 +0400
committerRyan Dahl <ry@tinyclouds.org>2011-12-20 01:41:04 +0400
commitc65a91c96fe9083bc8c49bf616b532cd6a771a8a (patch)
tree1527b36f52bc32a2f86e2cacd801e1a0e2eeab3c /common.gypi
parent802c4c6a61d586dccc55d6408424233d1a566bf2 (diff)
GYP: don't build V8 twice
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi1
1 files changed, 1 insertions, 0 deletions
diff --git a/common.gypi b/common.gypi
index a6149910a83..7a108b1d041 100644
--- a/common.gypi
+++ b/common.gypi
@@ -3,6 +3,7 @@
'visibility%': 'hidden', # V8's visibility setting
'target_arch%': 'ia32', # set v8's target architecture
'host_arch%': 'ia32', # set v8's host architecture
+ 'want_separate_host_toolset': 0, # V8 should not build target and host
'library%': 'static_library', # allow override to 'shared_library' for DLL/.so builds
'component%': 'static_library', # NB. these names match with what V8 expects
'msvs_multi_core_compile': '0', # we do enable multicore compiles, but not using the V8 way