From 13699c1b3398ac711fb4e29dac0a7713974aa9cb Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 25 Nov 2010 01:44:41 +0100 Subject: [PATCH] V8: Don't attempt to build w/ snapshot, doesn't seem to work on mingw32 --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index b626dd9..ebf6a1b 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 -- 2.7.4