Mon Mar 30 21:02:25 2009 UTC ()
Updated devel/cpuflags to 1.41

Treat all Atoms as '-march=core2 -mtune=pentium'


(abs)
diff -r1.146 -r1.147 pkgsrc/devel/cpuflags/Makefile
diff -r1.12 -r1.13 pkgsrc/devel/cpuflags/files/subr_x86

cvs diff -r1.146 -r1.147 pkgsrc/devel/cpuflags/Makefile (expand / switch to context diff)
--- pkgsrc/devel/cpuflags/Makefile 2009/03/12 23:57:28 1.146
+++ pkgsrc/devel/cpuflags/Makefile 2009/03/30 21:02:25 1.147
@@ -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

cvs diff -r1.12 -r1.13 pkgsrc/devel/cpuflags/files/subr_x86 (expand / switch to context diff)
--- pkgsrc/devel/cpuflags/files/subr_x86 2009/03/04 00:32:44 1.12
+++ pkgsrc/devel/cpuflags/files/subr_x86 2009/03/30 21:02:25 1.13
@@ -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 @@
 
 	"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' ;;