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:
parent
3e0e9c7f3c
commit
83f88917a8
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue