libg.a does not contain debugging information

Jon Beniston jon@beniston.com
Thu Aug 20 23:17:00 GMT 2009


> I have ported the newlib 1.17.0 to our architecture, but the libg.a
> does not contain any debugging information and has exactly the same
> size as libc.a. This is how I built the newlib:
> 
> export GCC_FOR_TARGET=spear32-gcc
> export CFLAGS_FOR_TARGET="-Os --save-temps"
> ./configure --prefix=/opt/spear --target=spear32
> make && make install
> Is there anything wrong with that?

I would guess that by setting CFLAGS_FOR_TARGET you are overriding the -g.
Try:

CFLAGS_FOR_TARGET="-Os --save-temps -g"

Although I think the preferred approach would not be to set
CFLAGS_FOR_TARGET at all, and instead configure with
--enable-target-optspace

Cheers,
Jon







More information about the Newlib mailing list