Skip to content
Snippets Groups Projects
Commit d616b6a7 authored by Edward Brash's avatar Edward Brash Committed by Stephen A. Wood
Browse files

Updates to linux64.py and linux32.py to fix RHEL7 compiler option

double-qoute mangling
parent 6b315122
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,9 @@ def config(env,args): ...@@ -23,7 +23,9 @@ def config(env,args):
if int(checkheaders): if int(checkheaders):
env.Append(CHECKHEADERS= '1') env.Append(CHECKHEADERS= '1')
env.Append(CXXFLAGS = '-m32 -Wall -Woverloaded-virtual') env.Append(CXXFLAGS = '-m32')
env.Append(CXXFLAGS = '-Wall')
env.Append(CXXFLAGS = '-Woverloaded-virtual')
env.Append(CPPDEFINES = '-DLINUXVERS') env.Append(CPPDEFINES = '-DLINUXVERS')
cxxversion = env.subst('$CXXVERSION') cxxversion = env.subst('$CXXVERSION')
......
...@@ -23,7 +23,8 @@ def config(env,args): ...@@ -23,7 +23,8 @@ def config(env,args):
if int(checkheaders): if int(checkheaders):
env.Append(CHECKHEADERS= '1') env.Append(CHECKHEADERS= '1')
env.Append(CXXFLAGS = '-Wall -Woverloaded-virtual') env.Append(CXXFLAGS = '-Wall')
env.Append(CXXFLAGS = '-Woverloaded-virtual')
env.Append(CPPDEFINES = '-DLINUXVERS') env.Append(CPPDEFINES = '-DLINUXVERS')
cxxversion = env.subst('$CXXVERSION') cxxversion = env.subst('$CXXVERSION')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment