diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-21 18:12:31 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-21 18:12:31 -0800 |
commit | 6751ffa041cd2175a59b1ca5d1f5e9f01228d4fa (patch) | |
tree | 9c290cd4b7ad322367b381ea46337318e67a10c3 /emscripten.py | |
parent | 13687415a5d557750c9f65bcfcd8f8d974bc8101 (diff) |
stop using separate js backend
Diffstat (limited to 'emscripten.py')
-rwxr-xr-x | emscripten.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emscripten.py b/emscripten.py index dabf4f94..347818ce 100755 --- a/emscripten.py +++ b/emscripten.py @@ -767,7 +767,7 @@ def emscript_fast(infile, settings, outfile, libraries=[], compiler_engine=None, if DEBUG: logging.debug(' ..4..') temp4 = temp_files.get('.4.js').name - backend_compiler = os.path.join(shared.JS_BACKEND_ROOT, 'llc') + backend_compiler = os.path.join(shared.PNACL_ROOT, 'llc') shared.jsrun.timeout_run(subprocess.Popen([backend_compiler, temp3, '-march=js', '-filetype=asm', '-o', temp4], stdout=subprocess.PIPE)) if DEBUG: shutil.copyfile(temp4, os.path.join(shared.CANONICAL_TEMP_DIR, 'temp4.js')) |