summaryrefslogtreecommitdiff
path: root/devel/cpuflags/files
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2009-02-02 17:09:46 +0000
committerabs <abs@pkgsrc.org>2009-02-02 17:09:46 +0000
commitd961b6a6eeb461c6758402ac67d03c2c437b7971 (patch)
treed984df57a999a75f58a39f922eeee9f91f96a2fc /devel/cpuflags/files
parent3308a7df0fb63c1ce82d3b5fefda22fa4cbfd9b8 (diff)
downloadpkgsrc-d961b6a6eeb461c6758402ac67d03c2c437b7971.tar.gz
Updated devel/cpuflags to 1.38
Handle Intel Core 2 (Merom) - from Steffen Beyer
Diffstat (limited to 'devel/cpuflags/files')
-rw-r--r--devel/cpuflags/files/subr_x863
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/cpuflags/files/subr_x86 b/devel/cpuflags/files/subr_x86
index b6fe733237a..24c6707babf 100644
--- a/devel/cpuflags/files/subr_x86
+++ b/devel/cpuflags/files/subr_x86
@@ -1,4 +1,4 @@
-# $NetBSD: subr_x86,v 1.10 2009/01/12 21:57:24 abs Exp $
+# $NetBSD: subr_x86,v 1.11 2009/02/02 17:09:46 abs Exp $
# Apparently the only way to reliably determine the architecture of a recent
# Intel CPU is to use the cpu brand string - as they reused family and
@@ -35,6 +35,7 @@ map_x86_brand_string()
"Intel(R) Celeron(R) M processor "*) echo '-march=pentium-m' ;;
"Intel(R) Celeron(TM) CPU 1400MHz") echo '-march=pentium3' ;;
"Intel(R) Core(TM)2 "*) echo '-march=core2' ;;
+ "Intel(R) Core 2 "*) echo '-march=core2' ;;
"Intel(R) Pentium(R) 4 CPU"*)
if [ -n "$cpu_feature_SSE3" ] ; then
echo '-march=prescott'