What ARM compiler version is needed for attribute(noinline) support?

209 Views Asked by At

I'm not sure how to find out what version of ARM compiler(armcc) is required for any given attribute to be supported.

For example __atribute__((noinline))?

See http://www.keil.com/support/man/docs/armcc/armcc_chr1359124975804.htm

1

There are 1 best solutions below

1
On

To address the titular question directly, the earliest version of armcc for which __attribute__((noinline)) is supported is version 3.0. I found that out the hard way, though; I don't know of any quick-reference for which versions introduced particular features.