Hi,
I'm trying to compile an ARM static library (fdlibm), but if i don't check the force C++ compilation box the function within are not found when i try to use this lib in a project.
Is this normal ? any config i missed ?
ARM name mangling... if you compiled the library as C code, not C++ code, then the prototypes for calling the library from your C++ code need to be surrounded by an
extern "C" {
}block to tell the compiler that these are C functions.
-- Ben Combee, Technical Lead, Developer Services, PalmSource, Inc. "Combee on Palm OS" weblog: http://palmos.combee.net/ Developer Forum Archives: http://news.palmos.com/read/all_forums/
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
