Skip to content

Commit

Permalink
Merge pull request #3 from Nicky-D/master
Browse files Browse the repository at this point in the history
Switch to 64 bit Linux builds (quick and dirty, swap -m32 with -m64)
  • Loading branch information
nat-goodspeed authored Jan 2, 2024
2 parents c905cbe + 1db375e commit cc63e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsoncpp-src/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ elif platform == 'mingw':
elif platform.startswith('linux-gcc'):
env.Tool( 'default' )
env['CXX']='g++'
env.Append( LIBS = ['pthread'], CCFLAGS = "-Wall -m32", LINKFLAGS="-m32")
env.Append( LIBS = ['pthread'], CCFLAGS = "-Wall -m64", LINKFLAGS="-m64")
env['SHARED_LIB_ENABLED'] = False
elif platform.startswith('darwin'):
env.Tool( 'default' )
Expand Down

0 comments on commit cc63e92

Please sign in to comment.