Author Topic: Adding inline asm allways generates an error  (Read 361 times)

Offline typicalc

  • Multiple posting newcomer
  • *
  • Posts: 25
Adding inline asm allways generates an error
« on: April 03, 2025, 12:56:16 pm »
I have trouble making GCC compile som additional ASM
The source is C and it has this test line:
asm("movl $0, %eax\n\t");

I get an error:
C:\Users\joe\AppData\Local\Temp\cc34a8K4.s|34018|Error: no such instruction: `movl $0,%eax'|

When I compile and link from command line it compiles and link fine. If I compile & link using "-masm=intel" the compiles fails with the same error.
SO I suspect I have "-masm=intel" setting somewhere in Codeblocks. Where is it? I searched "Project build options" and "Settings- compiler setting" but there was nothing about this.

Do I need some other setting or #include ?
« Last Edit: April 03, 2025, 03:51:14 pm by typicalc »

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7748
    • My Best Post
Re: Adding inline asm allways generates an error
« Reply #1 on: April 03, 2025, 10:25:45 pm »
Are you positive you are using the exact same compiler inside Code::Blocks and on the command line?

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline typicalc

  • Multiple posting newcomer
  • *
  • Posts: 25
Re: Adding inline asm allways generates an error
« Reply #2 on: Yesterday at 07:51:20 am »
Ok I found a solution. I manually edited the cbp file and took out the offending "masm=intel"
« Last Edit: Yesterday at 07:58:54 am by typicalc »