summaryrefslogtreecommitdiff
path: root/devel/cpuflags
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2009-03-30 21:02:25 +0000
committerabs <abs@pkgsrc.org>2009-03-30 21:02:25 +0000
commit921a7e1f6ddb09aaddcafc84fa0d94625e76e6d5 (patch)
treea46d62bdefa59fe02a4161dabe5a81fddbd378a3 /devel/cpuflags
parent2218854d15b2820417f7d7af378608e56d8c68c3 (diff)
downloadpkgsrc-921a7e1f6ddb09aaddcafc84fa0d94625e76e6d5.tar.gz
Updated devel/cpuflags to 1.41
Treat all Atoms as '-march=core2 -mtune=pentium'
Diffstat (limited to 'devel/cpuflags')
-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' ;;