diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-10-13 10:35:08 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-10-13 10:35:08 -0700 |
commit | 3f3505046f292d48af55a2924a47a78151e72ad4 (patch) | |
tree | 1d42d20fcaf89f4298e52de907152dc7f80552d5 | |
parent | 3f227142c58c4a5543f6ba3f39ee35765304aa88 (diff) |
remove obsolete emmaken possibility to use llvm-gcc
-rwxr-xr-x | tools/emmaken.py | 7 |
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 |