> error: no target memory available for section "ID_piccode_1"

You ran out of data memory (ID_xxx is initialized data). The message tells
you that the linker was unable to put initialized PLUS uninitialized data
into the available memory banks.

Try splitting you data structures into multiple source files to allow the
linker to better fill the pages (all initialized data defined in one
source file is forced into the same page; same for uninit'ed data).

> Is there something that i could do to compile this code without
rewritting a
> smaller code?

Code size is not currently the problem, data sizes are.

Hope that helps,
Raphael




-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to