diff options
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rw-r--r-- | devel/cpuflags/files/subr_x86 | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index 44bcc2a6acd..287498e6ba8 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.134 2008/12/21 15:49:27 abs Exp $ +# $NetBSD: Makefile,v 1.135 2008/12/23 09:48:38 abs Exp $ -DISTNAME= cpuflags-1.28 +DISTNAME= cpuflags-1.29 CATEGORIES= devel sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/subr_x86 b/devel/cpuflags/files/subr_x86 index cd87bc5606b..77f01a58015 100644 --- a/devel/cpuflags/files/subr_x86 +++ b/devel/cpuflags/files/subr_x86 @@ -1,4 +1,4 @@ -# $NetBSD: subr_x86,v 1.6 2008/12/21 15:49:27 abs Exp $ +# $NetBSD: subr_x86,v 1.7 2008/12/23 09:48:38 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 @@ -25,6 +25,7 @@ map_x86_brand_string() "Intel(R) Core(TM)2 CPU "*) echo '-march=core2' ;; "Intel(R) Core(TM)2 Duo CPU "*) echo '-march=core2' ;; "Intel(R) Core(TM)2 Quad CPU"*) echo '-march=core2' ;; + "Intel(R) Pentium(R) 4 CPU 2.00GHz") echo '-march=pentium4' ;; "Intel(R) Pentium(R) 4 CPU 2.80GHz") echo '-march=pentium4' ;; "Intel(R) Pentium(R) 4 CPU 3.00GHz") echo '-march=prescott' ;; "Intel(R) Pentium(R) 4 CPU 3.20GHz") echo '-march=prescott' ;; |