diff options
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | tools/shared.py | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -27,4 +27,4 @@ under the licensing terms detailed in LICENSE. * nandhp <nandhp@gmail.com> * YeZhongWen <linghuye2.0@gmail.com> * Xingxing Pan <forandom@gmail.com> - +* Justin Kerk <dopefishjustin@gmail.com> 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 |