> It is complaining about my .text segment being too large. How can I get > around this? > > Some research into this kind of thing made me think that I had too many > hard-coded strings in my .c files. I have a call tracing mechanism built > into my code-base that was generating a lot of strings. I replaced nearly > all of those strings with resources, but I still get the above error.
what about global arrays? how do you declare your strings? declarations in the form `Char szTest[999];' would fill up your data region, you can change this by using pointers and dynamically allocate memory at runtime. markus dresch (www.palmside.com) -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
