1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

GCC doesn't segfault anymore while building world with -mcpu=xscale, so use it.

This commit is contained in:
Olivier Houchard 2007-05-21 08:39:44 +00:00
parent 67de64dde8
commit ecf7ac028b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169820

View File

@ -103,9 +103,7 @@ _ICC_CPUCFLAGS =
_CPUCFLAGS = -march=${CPUTYPE}
. elif ${MACHINE_ARCH} == "arm"
. if ${CPUTYPE} == "xscale"
#XXX: gcc doesn't seem to like -mcpu=xscale, and dies while rebuilding itself
#_CPUCFLAGS = -mcpu=xscale
_CPUCFLAGS = -march=armv5te -D__XSCALE__
_CPUCFLAGS = -mcpu=xscale
. else
_CPUCFLAGS = -mcpu=${CPUTYPE}
. endif