diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-13 19:19:43 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-13 19:19:43 -0800 |
commit | b6ec8c397c5e0cfa0996edd8b4f0550875454dd3 (patch) | |
tree | c7c81fa14c119454ee19ce43f78a68abcc8e3fba | |
parent | 7fa88ad05149923f4edf79ef7db14852a992f842 (diff) |
two env var settings for emcc
-rwxr-xr-x | emcc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -80,7 +80,8 @@ import os, sys, shutil from subprocess import Popen, PIPE, STDOUT from tools import shared -DEBUG = 1 +DEBUG = os.environ.get('EMCC_DEBUG') +SAVE_FILES = os.environ.get('EMCC_SAVE_FILES') # TODO: use this ################### XXX print >> sys.stderr, '\n***This is a WORK IN PROGRESS***' |