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:
authorBert Belder <bertbelder@gmail.com>2010-11-25 03:44:41 +0300
committerBert Belder <bertbelder@gmail.com>2010-12-21 01:50:26 +0300
commit13699c1b3398ac711fb4e29dac0a7713974aa9cb (patch)
tree3ae169a327b3b916540c44d240b0cea980488592 /wscript
parent2463dbb3fd2133d56c8a3c683361f46240bcd4bb (diff)
V8: Don't attempt to build w/ snapshot, doesn't seem to work on mingw32
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index b626dd93c6a..ebf6a1b1ff8 100644
--- a/wscript
+++ b/wscript
@@ -178,7 +178,8 @@ def configure(conf):
o = Options.options
conf.env["USE_DEBUG"] = o.debug
- conf.env["SNAPSHOT_V8"] = not o.without_snapshot
+ # Snapshot building does noet seem to work on mingw32
+ conf.env["SNAPSHOT_V8"] = not o.without_snapshot and not sys.platform.startswith("win32")
if sys.platform.startswith("sunos"):
conf.env["SNAPSHOT_V8"] = False
conf.env["USE_PROFILING"] = o.profile