changed optimization flags
This commit is contained in:
parent
f5dda2f207
commit
2a4f25706b
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ cxx = 'g++'
|
|||
env = Environment(CXX=cxx,ENV=os.environ, options=opts)
|
||||
|
||||
cxx_debug='-Wall -ftemplate-depth-100 -O0 -fno-inline -g -pthread -DDEBUG'
|
||||
cxx_release='-Wall -ftemplate-depth-100 -O2 -finline-functions -Wno-inline -pthread -DNDEBUG'
|
||||
cxx_release='-Wall -ftemplate-depth-100 -O3 -finline-functions -Wno-inline -pthread -DNDEBUG'
|
||||
|
||||
release_env = env.Copy(CXXFLAGS = cxx_release)
|
||||
debug_env = env.Copy(CXXFLAGS = cxx_debug)
|
||||
|
|
Loading…
Reference in a new issue