Add CPUTYPE support for "athlon-tbird", as GCC makes the distinction.

PR:		50801
Submitted by:	Glenn Johnson <glennpj@charter.net>
This commit is contained in:
David E. O'Brien 2003-04-14 17:36:29 +00:00
parent aa65d9f538
commit ae7906208d

View File

@ -43,7 +43,7 @@ CPUTYPE = athlon
# http://gcc.gnu.org/onlinedocs/gcc/RS-6000-and-PowerPC-Options.html
. if ${MACHINE_ARCH} == "i386"
. if ${CPUTYPE} == "athlon-mp" || ${CPUTYPE} == "athlon-xp" || ${CPUTYPE} == "athlon-4" || ${CPUTYPE} == "athlon"
. if ${CPUTYPE} == "athlon-mp" || ${CPUTYPE} == "athlon-xp" || ${CPUTYPE} == "athlon-4" || ${CPUTYPE} == "athlon-tbird" || ${CPUTYPE} == "athlon"
_CPUCFLAGS = -march=${CPUTYPE}
. elif ${CPUTYPE} == "k6-3" || ${CPUTYPE} == "k6-2" || ${CPUTYPE} == "k6"
_CPUCFLAGS = -march=${CPUTYPE}