m0n0 wrote:
I don't know if this is program specific, it does not show up when compiling hello world...
Another rule: never link production code with -g. It would link to the debug MiNTLib, which has debug information but is not optimized.
This is very annoying, I don't know how it works on other systems. I suggest you link an hello world with -g and see what happens.I'm not sure of this but... you may have upgraded the normal MiNTLib RPM (libc.a), but not the debug one (libc_g.a). So when you use -g, it will link with the old MiNTLib, unoptimized, and lacking the new _checkcpu() function.
-- Vincent Rivière