aboutsummaryrefslogtreecommitdiff
path: root/tools/shared.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/shared.py')
-rw-r--r--tools/shared.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/shared.py b/tools/shared.py
index 97e953be..a480faa9 100644
--- a/tools/shared.py
+++ b/tools/shared.py
@@ -222,11 +222,11 @@ class Building:
@staticmethod
def get_building_env():
env = os.environ.copy()
- env['CC'] = EMMAKEN #EMCC
- env['CXX'] = EMMAKEN #EMXX
- env['AR'] = EMMAKEN #EMAR
- env['RANLIB'] = EMMAKEN #EMRANLIB
- env['LIBTOOL'] = EMMAKEN #EMLIBTOOL
+ env['CC'] = EMCC
+ env['CXX'] = EMXX
+ env['AR'] = EMAR
+ env['RANLIB'] = EMRANLIB
+ env['LIBTOOL'] = EMLIBTOOL
env['EMMAKEN_COMPILER'] = Building.COMPILER
env['EMSCRIPTEN_TOOLS'] = path_from_root('tools')
env['CFLAGS'] = env['EMMAKEN_CFLAGS'] = ' '.join(COMPILER_OPTS + Building.COMPILER_TEST_OPTS) # Normal CFLAGS is ignored by some configure's.