I'm attempting to create a new build machine for my products to replace a dying one. I've downloaded the NSIS 2.50 source and am attempting to compile it. I've applied a patch to get around a gcc 4.8 compile issue, but now I'm getting a link error:
As near as I can tell, the compile is getting done with the -m32 flag as it should.
/bin/ld: i386 architecture of input file `build/release/makensis/build.o' is incompatible with i386:x86-64 output
/bin/ld: i386 architecture of input file `build/release/makensis/clzma.o' is incompatible with i386:x86-64 output
/bin/ld: i386 architecture of input file `build/release/makensis/crc32.o' is incompatible with i386:x86-64 output
....
collect2: error: ld returned 1 exit status
scons: *** [build/release/makensis/makensis] Error 1
scons: building terminated because of errors.
I've made sure I have the 32-bit development libraries installed. Can someone help me get past this?
Thanks!
CrazyDogGuy