allow modifying the compiler in emmaken

This commit is contained in:
Alon Zakai 2011-10-16 14:08:52 -07:00
Родитель 5d3a70a0fe
Коммит a2c5f07501
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -76,7 +76,11 @@ try:
#f.write('Args: ' + ' '.join(sys.argv) + '\nCMake? ' + str(CMAKE_CONFIG) + '\n')
#f.close()
CXX = CLANG
if os.environ.get('EMMAKEN_COMPILER'):
CXX = os.environ['EMMAKEN_COMPILER']
else:
CXX = CLANG
CC = to_cc(CXX)
# If we got here from a redirection through emmakenxx.py, then force a C++ compiler here