diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-05-28 05:07:56 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-05-28 05:07:56 -0700 |
commit | 506de96842099ad1bdab2f4c70293ee4cce99aa5 (patch) | |
tree | 69ee71d6155ee56cdb14b609a28416c07352ab76 /tools | |
parent | a2b42ed8c959aeb15e4225d877f6ccaaedf7df48 (diff) |
test for scons integration and stop using emld there
Diffstat (limited to 'tools')
-rw-r--r-- | tools/scons/site_scons/site_tools/emscripten/emscripten.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/scons/site_scons/site_tools/emscripten/emscripten.py b/tools/scons/site_scons/site_tools/emscripten/emscripten.py index cb14b58e..7ccf2c5f 100644 --- a/tools/scons/site_scons/site_tools/emscripten/emscripten.py +++ b/tools/scons/site_scons/site_tools/emscripten/emscripten.py @@ -28,7 +28,7 @@ def generate(env, emscripten_path=None, **kw): env.Replace(CC = os.path.join(emscPath, "emcc" )) env.Replace(CXX = os.path.join(emscPath, "em++" )) - env.Replace(LINK = os.path.join(emscPath, "emld" )) + env.Replace(LINK = os.path.join(emscPath, "emcc" )) # SHLINK and LDMODULE should use LINK so no # need to change them here |