In article <81827@palm-dev-forum>, [EMAIL PROTECTED] says... > > My Shared Library Application is giving a link error > > Link Error : SampleLib.c: 'entities' has illegal single segment 32-bit > reference to '@284'. > Project: SampleLib.mcp, Target: SampleLib
This is a sign of your code getting too large. However, this is a little different from most "too much code" problems, since it references an internal compiler name, in this case "@284". Names in this format are given to unnamed items that the compiler generates. The key is that the reference comes from an item called "entities". Is this a function or a global variable? Whatever it is, its not happy -- is this a really long function with an internal string constant? -- Ben Combee <[EMAIL PROTECTED]> CodeWarrior for Palm OS technical lead -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
