vote up 3 vote down star
1

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.

flag

2 Answers

vote up 11 vote down check

Just pass the -m32 option to gcc.

link|flag
vote up -1 vote down

install 32-bit gcc compiler via distro-specific package manager or build it yourself.

HTH

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.