mirror of
https://github.com/Z3Prover/z3
synced 2025-06-17 19:36:17 +00:00
bugfix for python 2.6
This commit is contained in:
parent
3e0e9c7f3c
commit
83f88917a8
1 changed files with 1 additions and 1 deletions
|
@ -639,7 +639,7 @@ def is_CXX_gpp():
|
||||||
return is_compiler(CXX, 'g++')
|
return is_compiler(CXX, 'g++')
|
||||||
|
|
||||||
def is_clang_in_gpp_form(cc):
|
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
|
return str(version_string).find('clang') != -1
|
||||||
|
|
||||||
def is_CXX_clangpp():
|
def is_CXX_clangpp():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue