diff options
author | abs <abs> | 2008-12-18 00:57:12 +0000 |
---|---|---|
committer | abs <abs> | 2008-12-18 00:57:12 +0000 |
commit | 491191ad45196c8cb0dd6f9a4b1d0b3f89ed6189 (patch) | |
tree | 755f0aa50aa847ac2a854c5d0e315cf0e3bdc251 | |
parent | 10825f4587062f6d3f3a88a069b131dd86a3100a (diff) | |
download | pkgsrc-491191ad45196c8cb0dd6f9a4b1d0b3f89ed6189.tar.gz |
Updated devel/cpuflags to 1.25
Add "Intel(R) Pentium(R) 4 CPU 2.80GHz" from Alaric Snell-Pym
Add "Intel(R) Celeron(TM) CPU 1400MHz" from Bernhard Riedel
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rw-r--r-- | devel/cpuflags/files/subr_x86 | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index d85ad60c0c1..3b0bf0da742 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.130 2008/12/10 23:27:17 abs Exp $ +# $NetBSD: Makefile,v 1.131 2008/12/18 00:57:12 abs Exp $ -DISTNAME= cpuflags-1.24 +DISTNAME= cpuflags-1.25 CATEGORIES= devel sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/subr_x86 b/devel/cpuflags/files/subr_x86 index ca17d4dc26d..298f2315826 100644 --- a/devel/cpuflags/files/subr_x86 +++ b/devel/cpuflags/files/subr_x86 @@ -1,4 +1,4 @@ -# $NetBSD: subr_x86,v 1.3 2008/12/10 23:27:17 abs Exp $ +# $NetBSD: subr_x86,v 1.4 2008/12/18 00:57:12 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 @@ -9,9 +9,11 @@ map_x86_brand_string() "Genuine Intel(R) CPU T2400"*) echo '-march=core2' ;; "Intel(R) Celeron(R) CPU E1400"*) echo '-march=core2' ;; "Intel(R) Celeron(R) CPU 2.40GHz") echo '-march=pentium4' ;; + "Intel(R) Celeron(TM) CPU 1400MHz") echo '-march=pentium3' ;; "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.80GHz") echo '-march=pentium4' ;; "Intel(R) Pentium(R) 4 CPU 3.00GHz") echo '-march=prescott' ;; "Intel(R) Pentium(R) D CPU "*) echo '-march=prescott' ;; "Intel(R) Xeon(R) CPU 3040"*) echo '-march=core2' ;; |