Browse Source

V8: Don't attempt to build w/ snapshot, doesn't seem to work on mingw32

v0.7.4-release
Bert Belder 14 years ago
parent
commit
13699c1b33
  1. 3
      wscript

3
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

Loading…
Cancel
Save