Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to compile intel syntax assembly using gcc. Is it possible? because I cant find something similar. I've only found this post.

Here is the code I am trying to compile.

    global  _main
    section .text
_main:
    mov eax, -1     
        ret

If this is not possible please provide alternative options in your answer.

share|improve this question

1 Answer

up vote 3 down vote accepted

Adding a .intel_syntax directive works for me:

  .globl _main
  .intel_syntax

_main:
  mov eax, -1     
  ret

Assembling and running:

$ gcc -o example example.s; ./example; echo $?
255
share|improve this answer
Works for me too. Where did you find that? – marcus hatchenson Jan 18 '12 at 21:20
1  
I did a Google search for "gcc intel syntax". It was either the first or second hit. – Carl Norum Jan 18 '12 at 21:22
Hmmm, it doesn't work using mingw. – marcus hatchenson Jan 18 '12 at 21:25
Older gcc version? – Carl Norum Jan 18 '12 at 21:27
gcc version 4.4.0 (GCC), which one you have? – marcus hatchenson Jan 18 '12 at 21:29
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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