> I see... Is there an easy way to convert my managed make project into
a
> multi-segment one - or do I have to create a new, empty standard make
> project and import the existing sources to it?
Actually, I compile a multi-segment managed make project very easily
with PODS. All I did was add a .def file in the project directory with
the following:
application {"AppName" CRID}
multiple code { "sec2" "sec3" }
Then add:
#define SEC_2 __attribute__ ((section ("sec2")))
#define SEC_3 __attribute__ ((section ("sec3")))
To your source file(s) just like you do in prc-tools. Then simply mark
any function to go into the other sections on their prototypes:
Void MyFunc(void) SEC_2;
And that's it. It should compile.
Jonathan King
--
For information on using the Palm Developer Forums, or to unsubscribe, please
see http://www.palmos.com/dev/support/forums/