|
@ -178,7 +178,8 @@ def configure(conf): |
|
|
o = Options.options |
|
|
o = Options.options |
|
|
|
|
|
|
|
|
conf.env["USE_DEBUG"] = o.debug |
|
|
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"): |
|
|
if sys.platform.startswith("sunos"): |
|
|
conf.env["SNAPSHOT_V8"] = False |
|
|
conf.env["SNAPSHOT_V8"] = False |
|
|
conf.env["USE_PROFILING"] = o.profile |
|
|
conf.env["USE_PROFILING"] = o.profile |
|
|