> i have one application. when i compile it on linux using prc tools 2.2.1 it > compiles without any problem. but when i try to compile it on windows (with > prctools 2.3 (according to what cygwin installer shows)) it complains that > .bss > segment is too big and i can't link app together.
the .bss section is for zero initialized globals - do you have anything like this declared in your code: unsigned char buffer[0x10000]; that kind of stuff ends up in the .bss section - which, is allocated on startup and memset to 0 :) > how do i need to change application to build with prc-tools 2.3 ? i don't > have > much global variables m68k-palmos-objdump -h shows that in object files i > have > only few bytes used for globals so i don't know what can be a problem... what is m68k-palmos-objdump -h actually reporting? the difference between 2.3 and 2.2.1 could be the linker scripts and the crt0.o (startup routines) - shouldn't really make much difference for you, other than generating much better code :) --- Aaron Ardiri (Skype:: callto://ardiri) PalmOS Certified Developer [EMAIL PROTECTED] http://www.mobilewizardry.com/members/aaron_ardiri.php -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
