diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-21 08:36:33 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-29 13:01:58 -0700 |
commit | 17248eb417685f37a94bc8857d3d6e513364cc9d (patch) | |
tree | 9413876b64f25ecd7c3eec2a4362e7411b24de66 /emcc | |
parent | 0fedeaa62d955ce57e6751a57e263122420671c1 (diff) |
add target settings
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1032,6 +1032,9 @@ try: if minify_whitespace is None: minify_whitespace = opt_level >= 2 and not keep_js_debug + if shared.Settings.TARGET_X86: assert 'i386-pc-linux-gnu' in shared.COMPILER_OPTS + if shared.Settings.TARGET_LE32: assert 'le32-unknown-nacl' in shared.COMPILER_OPTS + ## Compile source code to bitcode if DEBUG: print >> sys.stderr, 'emcc: compiling to bitcode' |