You copied the Doc URL to your clipboard.
--inline_type=type
Inlines functions from all objects, Arm® standard libraries only, or turns off inlining completely.
Syntax
--inline_type=type
Where
is one of:type
all
- The linker is permitted to inline functions from all input objects.
library
- The linker is permitted to inline functions from the Arm standard libraries.
none
- The linker is not permitted to inline functions.
This option takes precedence over --inline
if both options are
present on the command line. The mapping between the options is:
--inline
maps to--inline_type=all
--no_inline
maps to--inline_type=library
Note
To disable linker inlining completely you must use
--inline_type=none
.