aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-10-13 10:35:08 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-10-13 10:35:08 -0700
commit3f3505046f292d48af55a2924a47a78151e72ad4 (patch)
tree1d42d20fcaf89f4298e52de907152dc7f80552d5
parent3f227142c58c4a5543f6ba3f39ee35765304aa88 (diff)
remove obsolete emmaken possibility to use llvm-gcc
-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