A minor update for handling older gcc versions
This commit is contained in:
parent
d14d2a1f61
commit
0a14c9f924
@ -74,11 +74,7 @@ BB_SRC_DIR=
|
|||||||
# using the compatible RPMs (compat-*) at http://www.redhat.com !
|
# using the compatible RPMs (compat-*) at http://www.redhat.com !
|
||||||
#LIBCDIR:=/usr/i386-glibc20-linux
|
#LIBCDIR:=/usr/i386-glibc20-linux
|
||||||
#
|
#
|
||||||
# The following is used for libc5 (if you install altgcc and libc5-altdev
|
# For other libraries, you are on your own. But these may (or may not) help...
|
||||||
# on a Debian system).
|
|
||||||
#LIBCDIR:=/usr/i486-linuxlibc1
|
|
||||||
#
|
|
||||||
# For other libraries, you are on your own...
|
|
||||||
#LDFLAGS+=-nostdlib
|
#LDFLAGS+=-nostdlib
|
||||||
#LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
|
#LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
|
||||||
#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
|
#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
|
||||||
@ -128,7 +124,7 @@ ifeq ($(strip $(TARGET_ARCH)),arm)
|
|||||||
OPTIMIZATION+=-fstrict-aliasing
|
OPTIMIZATION+=-fstrict-aliasing
|
||||||
endif
|
endif
|
||||||
ifeq ($(strip $(TARGET_ARCH)),i386)
|
ifeq ($(strip $(TARGET_ARCH)),i386)
|
||||||
OPTIMIZATION+=-march=i386
|
OPTIMIZATION+=$(call check_gcc,-march=i386,)
|
||||||
OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
|
OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
|
||||||
OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
|
OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
|
||||||
-malign-functions=0 -malign-jumps=0 -malign-loops=0)
|
-malign-functions=0 -malign-jumps=0 -malign-loops=0)
|
||||||
|
Loading…
Reference in New Issue
Block a user