Browse Source

Matrix compile tweak for Ubuntu 14.04

Fix for avoiding compilers not available for Ubuntu 14.04.
pull/264/head
Sami Vaarala 9 years ago
parent
commit
782c9421d8
  1. 3
      util/matrix_compile.py

3
util/matrix_compile.py

@ -188,7 +188,7 @@ def create_matrix(fn_duk):
# Some dialects and architectures are only available for newer g++ versions
Combine([
# -m32 with older llvm causes self test failure (double union)
Select([ 'llvm-gcc', 'llvm-gcc-4.7', 'llvm-gcc' ]),
Select([ 'llvm-gcc' ]),
Select([ '-m64' ]),
Select([
'',
@ -485,6 +485,7 @@ try { fibthrow(9); } catch (e) { print(e); }
print(' '.join(compile_command))
check_unlink(fn_duk)
#print(repr(compile_command))
compile_p = subprocess.Popen(compile_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
compile_stdout, compile_stderr = compile_p.communicate()
compile_exitcode = compile_p.returncode

Loading…
Cancel
Save