MFC: add CPUTYPE support for "core" and "core2".
This commit is contained in:
parent
c42cf872d1
commit
181fd25021
@ -32,11 +32,12 @@
|
||||
# Intel x86 architecture:
|
||||
# (AMD CPUs) opteron athlon64 athlon-mp athlon-xp athlon-4
|
||||
# athlon-tbird athlon k8 k6-3 k6-2 k6 k5
|
||||
# (Intel CPUs) nocona pentium4[m] prescott pentium3[m] pentium-m
|
||||
# pentium2 pentiumpro pentium-mmx pentium i486 i386
|
||||
# (Intel CPUs) core2 core nocona pentium4m pentium4 prescott
|
||||
# pentium3m pentium3 pentium-m pentium2
|
||||
# pentiumpro pentium-mmx pentium i486 i386
|
||||
# (Via CPUs) c3 c3-2
|
||||
# Alpha/AXP architecture: ev67 ev6 pca56 ev56 ev5 ev45 ev4
|
||||
# AMD64 architecture: opteron, athlon64, nocona
|
||||
# AMD64 architecture: opteron, athlon64, nocona, prescott, core2
|
||||
# Intel ia64 architecture: itanium2, itanium
|
||||
#
|
||||
# (?= allows to buildworld for a different CPUTYPE.)
|
||||
|
@ -25,8 +25,10 @@ MACHINE_CPU = arm
|
||||
# between e.g. i586 and pentium)
|
||||
|
||||
. if ${MACHINE_ARCH} == "i386"
|
||||
. if ${CPUTYPE} == "nocona"
|
||||
CPUTYPE = prescott
|
||||
. if ${CPUTYPE} == "prescott"
|
||||
CPUTYPE = nocona
|
||||
. elif ${CPUTYPE} == "core2"
|
||||
CPUTYPE = core
|
||||
. elif ${CPUTYPE} == "p4"
|
||||
CPUTYPE = pentium4
|
||||
. elif ${CPUTYPE} == "p4m"
|
||||
@ -136,6 +138,8 @@ MACHINE_CPU = k5 i586 i486 i386
|
||||
MACHINE_CPU = 3dnow mmx i586 i486 i386
|
||||
. elif ${CPUTYPE} == "c3-2"
|
||||
MACHINE_CPU = sse mmx i586 i486 i386
|
||||
. elif ${CPUTYPE} == "nocona" || ${CPUTYPE} == "core"
|
||||
MACHINE_CPU = sse3 sse2 sse i686 mmx i586 i486 i386
|
||||
. elif ${CPUTYPE} == "pentium4" || ${CPUTYPE} == "pentium4m" || ${CPUTYPE} == "pentium-m"
|
||||
MACHINE_CPU = sse2 sse i686 mmx i586 i486 i386
|
||||
. elif ${CPUTYPE} == "pentium3" || ${CPUTYPE} == "pentium3m"
|
||||
@ -170,7 +174,7 @@ MACHINE_CPU = ev4
|
||||
. elif ${MACHINE_ARCH} == "amd64"
|
||||
. if ${CPUTYPE} == "opteron" || ${CPUTYPE} == "athlon64" || ${CPUTYPE} == "k8"
|
||||
MACHINE_CPU = k8 3dnow
|
||||
. elif ${CPUTYPE} == "nocona"
|
||||
. elif ${CPUTYPE} == "nocona" || ${CPUTYPE} == "core2"
|
||||
MACHINE_CPU = sse3
|
||||
. endif
|
||||
MACHINE_CPU += amd64 sse2 sse mmx
|
||||
|
Loading…
x
Reference in New Issue
Block a user