Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • 1
    According the GCC manual the -fno-inline applies to ignoring the inline keyword in the source code. I believe the desired parameter is -fno-inline-functions combined with -fno-builtin. I checked using nm rather than checking the interrupt calls in the assembly source code. Commented Jan 25, 2012 at 22:32
  • With -fno-inline-functions and -fno-builtin the binary becomes smaller so the flags had an effect but not on the result of the program (as I would expect). Commented Jan 26, 2012 at 9:01