Question

For a school assignment I have to write x86 assembly code, except I can't use gcc to compile it since my computer is an x64 machine, and gcc is only excpecting x86 code. Is there a command that'll make gcc accept it x86 assembly code? Thanks

P.S. I know my code is valid since it compiles just fine on x86 machines.

Was it helpful?

Solution

Just pass the -m32 option to gcc.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top