diff options
author | Justin Kerk <dopefishjustin@gmail.com> | 2012-07-25 22:10:47 -0700 |
---|---|---|
committer | Justin Kerk <dopefishjustin@gmail.com> | 2012-07-25 22:10:47 -0700 |
commit | 5831375b15c21904214a514c8b2f6e1627bdb71e (patch) | |
tree | a0ccc4d010506cd9170e574c005d209023b04ed1 /tools | |
parent | 5739787049a07e1bf478af4bffad9e8906fb1e4b (diff) |
Add LD to the variables replaced by emmake
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/shared.py b/tools/shared.py index a74e64b2..672a1a18 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -443,6 +443,7 @@ class Building: env['CC'] = EMCC if not WINDOWS else 'python %r' % EMCC env['CXX'] = EMXX if not WINDOWS else 'python %r' % EMXX env['AR'] = EMAR if not WINDOWS else 'python %r' % EMAR + env['LD'] = EMCC if not WINDOWS else 'python %r' % EMCC env['RANLIB'] = EMRANLIB if not WINDOWS else 'python %r' % EMRANLIB #env['LIBTOOL'] = EMLIBTOOL if not WINDOWS else 'python %r' % EMLIBTOOL env['EMMAKEN_COMPILER'] = Building.COMPILER |