svn commit: r358862 - in head/share: examples/etc mk
Jung-uk Kim
jkim at FreeBSD.org
Tue Mar 10 23:12:57 UTC 2020
Author: jkim
Date: Tue Mar 10 23:12:55 2020
New Revision: 358862
URL: https://svnweb.freebsd.org/changeset/base/358862
Log:
Add "tigerlake" CPUTYPE for x86 to catch up with Clang 10.0.
Modified:
head/share/examples/etc/make.conf
head/share/mk/bsd.cpu.mk
Modified: head/share/examples/etc/make.conf
==============================================================================
--- head/share/examples/etc/make.conf Tue Mar 10 22:59:01 2020 (r358861)
+++ head/share/examples/etc/make.conf Tue Mar 10 23:12:55 2020 (r358862)
@@ -35,13 +35,14 @@
# k8-sse3, opteron, athlon64, athlon-fx, k8, athlon-mp,
# athlon-xp, athlon-4, athlon-tbird, athlon, k7, geode,
# k6-3, k6-2, k6
-# (Intel CPUs) cooperlake, cascadelake, tremont, goldmont-plus,
-# icelake-server, icelake-client, cannonlake, knm,
-# skylake-avx512, knl, goldmont, skylake, broadwell,
-# haswell, ivybridge, sandybridge, westmere, nehalem,
-# silvermont, bonnell, core2, core, nocona, pentium4m,
-# pentium4, prescott, pentium3m, pentium3, pentium-m,
-# pentium2, pentiumpro, pentium-mmx, pentium, i486
+# (Intel CPUs) tigerlake, cooperlake, cascadelake, tremont,
+# goldmont-plus, icelake-server, icelake-client,
+# cannonlake, knm, skylake-avx512, knl, goldmont,
+# skylake, broadwell, haswell, ivybridge, sandybridge,
+# westmere, nehalem, silvermont, bonnell, core2, core,
+# nocona, pentium4m, pentium4, prescott, pentium3m,
+# pentium3, pentium-m, pentium2, pentiumpro, pentium-mmx,
+# pentium, i486
# (VIA CPUs) c7, c3-2, c3
# ARM architecture: armv5, armv5te, armv6, armv6t2, arm1176jzf-s, armv7,
# armv7-a, armv7ve, generic-armv7-a, cortex-a5,
Modified: head/share/mk/bsd.cpu.mk
==============================================================================
--- head/share/mk/bsd.cpu.mk Tue Mar 10 22:59:01 2020 (r358861)
+++ head/share/mk/bsd.cpu.mk Tue Mar 10 23:12:55 2020 (r358862)
@@ -183,10 +183,10 @@ MACHINE_CPU = 3dnow mmx k6 k5 i586
MACHINE_CPU = mmx k6 k5 i586
. elif ${CPUTYPE} == "k5"
MACHINE_CPU = k5 i586
-. elif ${CPUTYPE} == "cooperlake" || ${CPUTYPE} == "cascadelake" || \
- ${CPUTYPE} == "icelake-server" || ${CPUTYPE} == "icelake-client" || \
- ${CPUTYPE} == "cannonlake" || ${CPUTYPE} == "knm" || \
- ${CPUTYPE} == "skylake-avx512" || ${CPUTYPE} == "knl"
+. elif ${CPUTYPE} == "tigerlake" || ${CPUTYPE} == "cooperlake" || \
+ ${CPUTYPE} == "cascadelake" || ${CPUTYPE} == "icelake-server" || \
+ ${CPUTYPE} == "icelake-client" || ${CPUTYPE} == "cannonlake" || \
+ ${CPUTYPE} == "knm" || ${CPUTYPE} == "skylake-avx512" || ${CPUTYPE} == "knl"
MACHINE_CPU = avx512 avx2 avx sse42 sse41 ssse3 sse3 sse2 sse i686 mmx i586
. elif ${CPUTYPE} == "skylake" || ${CPUTYPE} == "broadwell" || \
${CPUTYPE} == "haswell"
@@ -249,10 +249,10 @@ MACHINE_CPU = k8 3dnow sse3
. elif ${CPUTYPE} == "opteron" || ${CPUTYPE} == "athlon64" || \
${CPUTYPE} == "athlon-fx" || ${CPUTYPE} == "k8"
MACHINE_CPU = k8 3dnow
-. elif ${CPUTYPE} == "cooperlake" || ${CPUTYPE} == "cascadelake" || \
- ${CPUTYPE} == "icelake-server" || ${CPUTYPE} == "icelake-client" || \
- ${CPUTYPE} == "cannonlake" || ${CPUTYPE} == "knm" || \
- ${CPUTYPE} == "skylake-avx512" || ${CPUTYPE} == "knl"
+. elif ${CPUTYPE} == "tigerlake" || ${CPUTYPE} == "cooperlake" || \
+ ${CPUTYPE} == "cascadelake" || ${CPUTYPE} == "icelake-server" || \
+ ${CPUTYPE} == "icelake-client" || ${CPUTYPE} == "cannonlake" || \
+ ${CPUTYPE} == "knm" || ${CPUTYPE} == "skylake-avx512" || ${CPUTYPE} == "knl"
MACHINE_CPU = avx512 avx2 avx sse42 sse41 ssse3 sse3
. elif ${CPUTYPE} == "skylake" || ${CPUTYPE} == "broadwell" || \
${CPUTYPE} == "haswell"
More information about the svn-src-head
mailing list