Tell lpgcc about the target architecture directory. This slipped through since

FILO does not use lpgcc (yet)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4310 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2009-05-26 18:01:53 +00:00 committed by Stefan Reinauer
parent 21dbe8ad3c
commit 5429e26b9c
1 changed files with 12 additions and 1 deletions

View File

@ -48,6 +48,9 @@ BASE=`dirname $0`
# This will set the _LIBDIR and _INCDIR variables used below
. $BASE/lp.functions
# include libpayload config
. $BASE/../libpayload.config
_LDSCRIPT="-Wl,-T,$_LIBDIR/libpayload.ldscript"
trygccoption() {
@ -97,7 +100,15 @@ while [ $# -gt 0 ]; do
shift
done
_CFLAGS="-m32 -nostdinc -nostdlib -I$_INCDIR"
if [ "$CONFIG_TARGET_I386" = "y" ]; then
_ARCHINCDIR=$_INCDIR/i386
fi
if [ "$CONFIG_TARGET_POWERPC" = "y" ]; then
_ARCHINCDIR=$_INCDIR/powerpc
fi
_CFLAGS="-m32 -nostdinc -nostdlib -I$_INCDIR -I$_ARCHINCDIR"
# Check for the -fno-stack-protector silliness