aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/emmaken.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/emmaken.py b/tools/emmaken.py
index f54f38f1..4984435a 100755
--- a/tools/emmaken.py
+++ b/tools/emmaken.py
@@ -76,12 +76,7 @@ try:
#f.write('Args: ' + ' '.join(sys.argv) + '\nCMake? ' + str(CMAKE_CONFIG) + '\n')
#f.close()
- # If no provided compiler, use LLVM_GCC from ~/.emscripten.
- # Or, use the provided one; if it is 'clang', then use CLANG from ~/.emscripten
- cxx = os.environ.get('EMMAKEN_COMPILER')
- if cxx and cxx == 'clang':
- cxx = CLANG
- CXX = cxx or LLVM_GCC
+ CXX = CLANG
CC = to_cc(CXX)
# If we got here from a redirection through emmakenxx.py, then force a C++ compiler here