How to inline string.h function on linux?
- by tz1
I want to optimize some code such that all the functions in string.h will be inlined. I'm on x86_64.
I've tried -O3, -minline-all-stringops and when I do "nm a.out" it shows it is calling the glibc version.
Checking with gcc -S, I see the calls.
What am I missing? There are dozens of #ifdef _SOME_SETTING_ in string.h, and bits/string3.h shows…