pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/doc Update cpuflags to 0.77
details: https://anonhg.NetBSD.org/pkgsrc/rev/e9e3175add2b
branches: trunk
changeset: 482836:e9e3175add2b
user: abs <abs%pkgsrc.org@localhost>
date: Wed Nov 03 18:16:27 2004 +0000
description:
Update cpuflags to 0.77
Correctly identify 7400 and 7450 cpus (from Timo Schöler), and fall back
to 750 not 740 for older gcc versions.
diffstat:
devel/cpuflags/Makefile | 4 ++--
devel/cpuflags/files/cpuflags.Linux | 6 ++++--
devel/cpuflags/files/cpuflags.NetBSD | 14 ++++++++------
devel/cpuflags/files/cpuflags.SunOS | 6 ++++--
doc/CHANGES | 4 +++-
5 files changed, 21 insertions(+), 13 deletions(-)
diffs (131 lines):
diff -r e42ee2f48dcd -r e9e3175add2b devel/cpuflags/Makefile
--- a/devel/cpuflags/Makefile Wed Nov 03 17:10:05 2004 +0000
+++ b/devel/cpuflags/Makefile Wed Nov 03 18:16:27 2004 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.79 2004/09/23 11:41:10 abs Exp $
+# $NetBSD: Makefile,v 1.80 2004/11/03 18:16:27 abs Exp $
#
-DISTNAME= cpuflags-0.76
+DISTNAME= cpuflags-0.77
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff -r e42ee2f48dcd -r e9e3175add2b devel/cpuflags/files/cpuflags.Linux
--- a/devel/cpuflags/files/cpuflags.Linux Wed Nov 03 17:10:05 2004 +0000
+++ b/devel/cpuflags/files/cpuflags.Linux Wed Nov 03 18:16:27 2004 +0000
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: cpuflags.Linux,v 1.9 2004/09/23 11:41:10 abs Exp $
+# $NetBSD: cpuflags.Linux,v 1.10 2004/11/03 18:16:27 abs Exp $
PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH
if [ "$1" = -v ] ; then
@@ -117,6 +117,8 @@
3.1:-march=r6000:-cpu=r6000
3.1:-march=r8000:-cpu=r8000
3.1:-mcpu=21264a:-mcpu=21264
+3.1:-mcpu=7400:-mcpu=750
+3.1:-mcpu=7450:-mcpu=750
3.1:-mtune=r2000:-cpu=r2000
3.1:-mtune=r3000:-cpu=r3000
3.1:-mtune=r3900:-cpu=r3900
@@ -131,8 +133,8 @@
3.3:-march=c3:-march=i586
3.3:-march=winchip-c6:-march=i586
3.3:-march=winchip2:-march=i586
+3.4:-march=athlon-fx:-march=athlon-xp
3.4:-march=athlon64:-march=athlon-xp
-3.4:-march=athlon-fx:-march=athlon-xp
3.4:-march=c3-2:-march=c3
3.4:-march=k8:-march=athlon-xp
3.4:-march=nocona:-march=pentium4
diff -r e42ee2f48dcd -r e9e3175add2b devel/cpuflags/files/cpuflags.NetBSD
--- a/devel/cpuflags/files/cpuflags.NetBSD Wed Nov 03 17:10:05 2004 +0000
+++ b/devel/cpuflags/files/cpuflags.NetBSD Wed Nov 03 18:16:27 2004 +0000
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: cpuflags.NetBSD,v 1.55 2004/09/23 11:41:10 abs Exp $
+# $NetBSD: cpuflags.NetBSD,v 1.56 2004/11/03 18:16:27 abs Exp $
PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH
if [ "$1" = -v ] ; then
@@ -136,11 +136,11 @@
603e\ *|603ev\ *) FLAGS='-mcpu=603e' ;; # Umax C500 / PM4400
604\ *) FLAGS='-mcpu=604' ;; # Mac 8500
604ev\ *) FLAGS='-mcpu=604e' ;; # upgr B&W G3
- 7450\ *) FLAGS='-mcpu=740' ;; # tibook 550
- 7400\ *) FLAGS='-mcpu=740' ;; # AGP G4/400 Mac
+ 620\ *) FLAGS='-mcpu=620' ;; # Untested
+ 7400\ *) FLAGS='-mcpu=7400' ;; # AGP G4/400 Mac
+ 740\ *) FLAGS='-mcpu=740' ;; # Untested
+ 7450\ *) FLAGS='-mcpu=7450' ;; # tibook 550
750\ *) FLAGS='-mcpu=750' ;; # Untested
- 740\ *) FLAGS='-mcpu=740' ;; # Untested
- 620\ *) FLAGS='-mcpu=620' ;; # Untested
esac ;;
sparc | sparc64) case " $hw_model" in # Examples
@@ -236,6 +236,8 @@
3.1:-march=r6000:-cpu=r6000
3.1:-march=r8000:-cpu=r8000
3.1:-mcpu=21264a:-mcpu=21264
+3.1:-mcpu=7400:-mcpu=750
+3.1:-mcpu=7450:-mcpu=750
3.1:-mtune=r2000:-cpu=r2000
3.1:-mtune=r3000:-cpu=r3000
3.1:-mtune=r3900:-cpu=r3900
@@ -250,8 +252,8 @@
3.3:-march=c3:-march=i586
3.3:-march=winchip-c6:-march=i586
3.3:-march=winchip2:-march=i586
+3.4:-march=athlon-fx:-march=athlon-xp
3.4:-march=athlon64:-march=athlon-xp
-3.4:-march=athlon-fx:-march=athlon-xp
3.4:-march=c3-2:-march=c3
3.4:-march=k8:-march=athlon-xp
3.4:-march=nocona:-march=pentium4
diff -r e42ee2f48dcd -r e9e3175add2b devel/cpuflags/files/cpuflags.SunOS
--- a/devel/cpuflags/files/cpuflags.SunOS Wed Nov 03 17:10:05 2004 +0000
+++ b/devel/cpuflags/files/cpuflags.SunOS Wed Nov 03 18:16:27 2004 +0000
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: cpuflags.SunOS,v 1.4 2004/09/23 11:41:10 abs Exp $
+# $NetBSD: cpuflags.SunOS,v 1.5 2004/11/03 18:16:27 abs Exp $
PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH
if [ "$1" = -v ] ; then
@@ -93,6 +93,8 @@
3.1:-march=r6000:-cpu=r6000
3.1:-march=r8000:-cpu=r8000
3.1:-mcpu=21264a:-mcpu=21264
+3.1:-mcpu=7400:-mcpu=750
+3.1:-mcpu=7450:-mcpu=750
3.1:-mtune=r2000:-cpu=r2000
3.1:-mtune=r3000:-cpu=r3000
3.1:-mtune=r3900:-cpu=r3900
@@ -107,8 +109,8 @@
3.3:-march=c3:-march=i586
3.3:-march=winchip-c6:-march=i586
3.3:-march=winchip2:-march=i586
+3.4:-march=athlon-fx:-march=athlon-xp
3.4:-march=athlon64:-march=athlon-xp
-3.4:-march=athlon-fx:-march=athlon-xp
3.4:-march=c3-2:-march=c3
3.4:-march=k8:-march=athlon-xp
3.4:-march=nocona:-march=pentium4
diff -r e42ee2f48dcd -r e9e3175add2b doc/CHANGES
--- a/doc/CHANGES Wed Nov 03 17:10:05 2004 +0000
+++ b/doc/CHANGES Wed Nov 03 18:16:27 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.7680 2004/11/03 17:01:13 minskim Exp $
+$NetBSD: CHANGES,v 1.7681 2004/11/03 18:18:42 abs Exp $
Changes to the packages collection and infrastructure in 2004:
@@ -5054,3 +5054,5 @@
Updated py-libxml2 to 2.6.15 [minskim 2004-11-03]
Updated py-libxslt to 1.1.12 [minskim 2004-11-03]
Updated sylpheed-gtk2 to 0.9.99.20041024 [minskim 2004-11-03]
+ Updated cpuflags to 0.77 [abs 2004-11-03]
+
Home |
Main Index |
Thread Index |
Old Index