I have these makefile macros:
Code:
build_apple=-D _MAC
build_win16=-D _WIN16
build_win32=-D _WIN32 -mabi=ms -march=i386
build_win64=-D _WIN64 -mabi=ms -march=x86-64
When make gets to launching the win32 compile gcc spits this at me:
cc1: error: CPU you selected does not support x86-64 instruction set
I'm assuming I gave the option the wrong value but there was none that was called x86 and from my memory i386 is what that usually refers to. Would appreciate some help here, btw compiling on linux so msc is not an option... not that I would use it if I could help it.