diff options
author | abs <abs@pkgsrc.org> | 2007-04-24 22:44:20 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2007-04-24 22:44:20 +0000 |
commit | 3608fd46a48ebfc721778382d95d5e3be22c2cc7 (patch) | |
tree | 71dbbc6461fd36b34f0409e484a733d9338595a8 /devel/cpuflags | |
parent | aef1eb1b006dbb768d63a46164793da416c4403b (diff) | |
download | pkgsrc-3608fd46a48ebfc721778382d95d5e3be22c2cc7.tar.gz |
Update cpuflags to 1.06 - add a couple more amd64 chips - thanks to
Ryo Hayasaka & Takanori Isihara
Diffstat (limited to 'devel/cpuflags')
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rwxr-xr-x | devel/cpuflags/files/cpuflags.NetBSD | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index 3eb75955da4..f7a85c5df9f 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.109 2007/03/21 15:05:08 abs Exp $ +# $NetBSD: Makefile,v 1.110 2007/04/24 22:44:20 abs Exp $ # -DISTNAME= cpuflags-1.06 +DISTNAME= cpuflags-1.07 CATEGORIES= sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/cpuflags.NetBSD b/devel/cpuflags/files/cpuflags.NetBSD index da2e6098b4d..1a6e45013f9 100755 --- a/devel/cpuflags/files/cpuflags.NetBSD +++ b/devel/cpuflags/files/cpuflags.NetBSD @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: cpuflags.NetBSD,v 1.68 2007/03/21 15:05:08 abs Exp $ +# $NetBSD: cpuflags.NetBSD,v 1.69 2007/04/24 22:44:20 abs Exp $ PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH AWK=awk @@ -98,6 +98,8 @@ case $hw_machine_arch in *AMD\ Athlon\ XP\ *) FLAGS='-march=athlon-xp' ;; *AMD\ K7*|*AMD\ Athlon*) FLAGS='-march=athlon' ;; *AMD\ Unknown\ K7\ \(Athlon\)*) FLAGS='-march=athlon' ;; + *AMD\ Opteron\(tm\)\ Processor*) FLAGS='-march=opteron' ;; + *AMD\ Turion\(tm\)\ 64\ Mobile*) FLAGS='-march=athlon64' ;; *386-class*) FLAGS='-march=i386' ;; *486-class*) FLAGS='-march=i486' ;; *586-class*) FLAGS='-march=pentium' ;; |