diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-09-13 16:59:46 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-09-13 17:24:50 -0700 |
commit | 1c993f99f175f36109eb169c6831b25e87304338 (patch) | |
tree | 1ec1e88c1847fa1fac2d9c065aed9b2e69f02986 /emcc | |
parent | 62e2462acc312b8cd075a8efa224eca5969c5ad9 (diff) |
clearer error message when a crucial llvm tool is missing, and force sanity checks in EMCC_DEBUG mode
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ if DEBUG and LEAVE_INPUTS_RAW: print >> sys.stderr, 'emcc: leaving inputs raw' stdout = PIPE if not DEBUG else None # suppress output of child processes stderr = PIPE if not DEBUG else None # unless we are in DEBUG mode -shared.check_sanity() +shared.check_sanity(force=DEBUG) # Handle some global flags |