Skip to content

Commit

Permalink
Modifications to linux64.py and linux32.py to fix compiler option dou…
Browse files Browse the repository at this point in the history
…ble-quote mangling on RHEL7 systems.
  • Loading branch information
brash99 committed Nov 4, 2016
1 parent 265db6e commit df29d2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion linux32.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ def config(env,args):
if int(srcdist):
env.Append(SRCDIST= '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')

cxxversion = env.subst('$CXXVERSION')
Expand Down
3 changes: 2 additions & 1 deletion linux64.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def config(env,args):
if int(srcdist):
env.Append(SRCDIST= '1')

env.Append(CXXFLAGS = '-Wall -Woverloaded-virtual')
env.Append(CXXFLAGS = '-Wall')
env.Append(CXXFLAGS = '-Woverloaded-virtual')
env.Append(CPPDEFINES = '-DLINUXVERS')

cxxversion = env.subst('$CXXVERSION')
Expand Down

0 comments on commit df29d2b

Please sign in to comment.