avr-gcc-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [avr-gcc-list] ld: region text is full ? ?


From: Larry Barello
Subject: Re: [avr-gcc-list] ld: region text is full ? ?
Date: Sun, 22 Apr 2001 08:05:25 -0700

The message means that one or more of your memory segments (flash, eeprom,
sram) is full.

Look at your link output to determine what is going on.  I would guess that
you simply have more than 4k of code...

Here are the flags I use in my makefile, to produce a map

LDFLAGS = -Wl,-lm,-Map=$(<:.o=.map),--cref,-v,--sort-common

foo.elf: $(OBJ) $(LIB)
    $(CC) $(LDFLAGS) $(OBJ) $(LIB) -mcu=$(MCU) -o $@

----- Original Message -----
From: "Michael Redecke" <address@hidden>


hello there !
i just saw that my first posting did not arrive correctly to this list.
So, again my question:

what does this error message mean: "region text full" ???
it concerns the AT90S4433.
must i reduce the number of functions ? or number of source code lines ?
i think that i am not using to many variables or memory.

greetings from Michael (Sylt island) , DF1OX






reply via email to

[Prev in Thread] Current Thread [Next in Thread]