I have a somewhat different type of "unresolved symbol" problem - the unresolveds are NOT showing up!
I noticed this during development because I've been radically changing function names and pointers etc.
I have a .h file that has a lot of extern statements like "extern int function1(void);" to declare the functions.
I do *not* have them defined.
I have a table of function pointers that attempt to reference said functions. The names of the functions in the
table are a little bit different than the extern'd names; hence, I would expect all sorts of "unresolved symbols" or something during the link.
That doesn't happen! I even put in a direct function call to one of the declared but not
defined functions. The compiler and linker doesn't show me an unresolved, it just links!
I have created small project attempting to duplicate the issue for submission here - I can't!
Am I getting caught by some sort of CCS option that is inserting code for the unresolved functions?
Thanks,
Gary L. Coakley