mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
Append std=c++11 instead of replacing CXXFLAGS; see #2130
This commit is contained in:
parent
c5df6ce96e
commit
b702cad81e
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ from setuptools.command.bdist_egg import bdist_egg as _bdist_egg
|
|||
|
||||
build_env = dict(os.environ)
|
||||
build_env['PYTHON'] = sys.executable
|
||||
build_env['CXXFLAGS'] = "-std=c++11"
|
||||
build_env['CXXFLAGS'] = build_env.get('CXXFLAGS', '') + " -std=c++11"
|
||||
|
||||
ROOT_DIR = os.path.abspath(os.path.dirname(__file__))
|
||||
SRC_DIR_LOCAL = os.path.join(ROOT_DIR, 'core')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue