3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-10 19:27:06 +00:00

bugfix for python 2.6

This commit is contained in:
Christoph M. Wintersteiger 2014-03-20 17:47:41 +00:00
parent 3e0e9c7f3c
commit 83f88917a8

View file

@ -639,7 +639,7 @@ def is_CXX_gpp():
return is_compiler(CXX, 'g++')
def is_clang_in_gpp_form(cc):
version_string = subprocess.check_output([cc, '--version'])
version_string = check_output([cc, '--version'])
return str(version_string).find('clang') != -1
def is_CXX_clangpp():