1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-06 18:29:47 +00:00

Optimize for i486 better (-m486 is just another deprecated

synonym for -mcpu=i486).

PR:		i386/37212
Submitted by:	Matthias Andree <matthias.andree@web.de>
MFC after:	3 days
This commit is contained in:
Ruslan Ermilov 2002-04-18 09:37:15 +00:00
parent 6106f3b274
commit cf80b5b504
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94987

View File

@ -51,7 +51,7 @@ _CPUCFLAGS = -march=pentium
. elif ${CPUTYPE} == "i586"
_CPUCFLAGS = -march=pentium
. elif ${CPUTYPE} == "i486"
_CPUCFLAGS = -m486
_CPUCFLAGS = -march=i486
. endif
. elif ${MACHINE_ARCH} == "alpha"
. if ${CPUTYPE} == "ev6"