aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2013-09-04 16:17:10 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2013-09-04 16:17:10 +0700
commit85478073f70ed33a90731812a1d51859c0a048e2 (patch)
treeb55c3746bfd8735c73fc461f3a726f907f93b457 /tools
parent6eaaebf4dd9c1dbd38dba929199cd3121b666c0f (diff)
Remove unused / unwritten emlibtool.
This isn't used or even implemented and apparently isn't necessary.
Diffstat (limited to 'tools')
-rw-r--r--tools/shared.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/shared.py b/tools/shared.py
index b0b3985e..8fdb52a5 100644
--- a/tools/shared.py
+++ b/tools/shared.py
@@ -429,7 +429,6 @@ EMCC = path_from_root('emcc')
EMXX = path_from_root('em++')
EMAR = path_from_root('emar')
EMRANLIB = path_from_root('emranlib')
-EMLIBTOOL = path_from_root('emlibtool')
EMCONFIG = path_from_root('em-config')
EMLINK = path_from_root('emlink.py')
EMMAKEN = path_from_root('tools', 'emmaken.py')
@@ -786,7 +785,6 @@ class Building:
env['LD'] = EMCC if not WINDOWS else 'python %r' % EMCC
env['LDSHARED'] = 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
env['EMSCRIPTEN_TOOLS'] = path_from_root('tools')
env['CFLAGS'] = env['EMMAKEN_CFLAGS'] = ' '.join(Building.COMPILER_TEST_OPTS)