summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabs <abs>2009-03-30 21:02:25 +0000
committerabs <abs>2009-03-30 21:02:25 +0000
commitfe66a9e02ffa04ed9dcbf187e9d248657990dcb8 (patch)
treea46d62bdefa59fe02a4161dabe5a81fddbd378a3
parent7e605609d19d57520795882ea00e0503468bb867 (diff)
downloadpkgsrc-fe66a9e02ffa04ed9dcbf187e9d248657990dcb8.tar.gz
Updated devel/cpuflags to 1.41
Treat all Atoms as '-march=core2 -mtune=pentium'
-rw-r--r--devel/cpuflags/Makefile4
-rw-r--r--devel/cpuflags/files/subr_x864
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile
index 32dec73c215..ae261a564fa 100644
--- a/devel/cpuflags/Makefile
+++ b/devel/cpuflags/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.146 2009/03/12 23:57:28 abs Exp $
+# $NetBSD: Makefile,v 1.147 2009/03/30 21:02:25 abs Exp $
-DISTNAME= cpuflags-1.40
+DISTNAME= cpuflags-1.41
CATEGORIES= devel sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/devel/cpuflags/files/subr_x86 b/devel/cpuflags/files/subr_x86
index 9d858eae09d..5e1f71dba95 100644
--- a/devel/cpuflags/files/subr_x86
+++ b/devel/cpuflags/files/subr_x86
@@ -1,4 +1,4 @@
-# $NetBSD: subr_x86,v 1.12 2009/03/04 00:32:44 abs Exp $
+# $NetBSD: subr_x86,v 1.13 2009/03/30 21:02:25 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
@@ -30,7 +30,7 @@ map_x86_brand_string()
"Genuine Intel(R) CPU T2400"*) echo '-march=core2' ;;
"Genuine Intel(R) CPU T2500"*) echo '-march=core2' ;;
- "Intel(R) Atom(TM) CPU N270 "*) echo '-march=prescott' ;;#So far
+ "Intel(R) Atom(TM) CPU "*) echo '-march=core2 -mtune=pentium' ;;#So far
"Intel(R) Celeron(R) CPU E1400"*) echo '-march=core2' ;;
"Intel(R) Celeron(R) CPU 2.40GHz") echo '-march=pentium4' ;;
"Intel(R) Celeron(R) M processor "*) echo '-march=pentium-m' ;;