diff options
author | abs <abs@pkgsrc.org> | 2008-12-08 19:46:58 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2008-12-08 19:46:58 +0000 |
commit | a8dff4e5ebb607245deaf2f4cd82d57ea3530fc3 (patch) | |
tree | 7b2002ad61c5f217a2160ae037bbf04eacd1eb45 /devel/cpuflags | |
parent | 68f36b540952819346d11f4bdb3a292cbc354971 (diff) | |
download | pkgsrc-a8dff4e5ebb607245deaf2f4cd82d57ea3530fc3.tar.gz |
Updated devel/cpuflags to 1.23
Add:
'AMD Family 10h (686-class)' (-march=amdfam10)
Diffstat (limited to 'devel/cpuflags')
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rwxr-xr-x | devel/cpuflags/files/subr_NetBSD | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index 0caddaa6673..b2f18b3ffca 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.128 2008/12/08 17:40:14 abs Exp $ +# $NetBSD: Makefile,v 1.129 2008/12/08 19:46:58 abs Exp $ -DISTNAME= cpuflags-1.22 +DISTNAME= cpuflags-1.23 CATEGORIES= devel sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/subr_NetBSD b/devel/cpuflags/files/subr_NetBSD index 1ffdb226dfb..2af3a910483 100755 --- a/devel/cpuflags/files/subr_NetBSD +++ b/devel/cpuflags/files/subr_NetBSD @@ -1,4 +1,4 @@ -# $NetBSD: subr_NetBSD,v 1.6 2008/12/08 17:40:14 abs Exp $ +# $NetBSD: subr_NetBSD,v 1.7 2008/12/08 19:46:59 abs Exp $ AWK=awk SED=sed @@ -97,6 +97,7 @@ determine_arch() 'AMD Athlon 64 or Sempron (686-class)'*) ARCH='-march=athlon64' ;; 'AMD Athlon Model 4 (Thunderbird) '*) ARCH='-march=athlon-tbird' ;; 'AMD Dual-Core Opteron or Athlon 64 X2 '*) ARCH='-march=opteron' ;; + 'AMD Family 10h (686-class)'*) ARCH='-march=amdfam10' ;; 'Intel (686-class)'*) ARCH='-march=pentiumpro' ;; 'Intel Celeron (686-class)'*) ARCH='-march=pentiumpro' ;; 'Intel Core 2 (Merom) (686-class)'*) ARCH='-march=core2' ;; |