I have a problem with -O2 in gcc 4.5.2. Say I have this code:
//file.cpp
void test::f() {}
//file.h
struct test
{
inline void f();
};
This code is in the shared library. Now, when I compile without -O2, it works fine. With -O2 it says that test::f() is undefined symbol. Obviously gcc just throws it away because it's "inline" (though it is really not).
My question is what specific optimization flag causes this? The idea is that I want to enable -O2 but disable that exact flag so that I can keep inlines untouched (that's not my code).
I can probably just iterate all of them but, this can also be linker flag, right? This is too much work, I just hope someone will have a clue.