Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/mk switch powerpc64 to GCC 4.5 and GDB 7. untested, b...



details:   https://anonhg.NetBSD.org/src/rev/bf1e269573fd
branches:  trunk
changeset: 770712:bf1e269573fd
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun Oct 30 08:50:14 2011 +0000

description:
switch powerpc64 to GCC 4.5 and GDB 7.  untested, but it builds which
is a step forward from a week ago.

diffstat:

 share/mk/bsd.own.mk |  30 ++++++++++++++++--------------
 1 files changed, 16 insertions(+), 14 deletions(-)

diffs (51 lines):

diff -r f9ff8e505e00 -r bf1e269573fd share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk       Sun Oct 30 08:33:43 2011 +0000
+++ b/share/mk/bsd.own.mk       Sun Oct 30 08:50:14 2011 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.own.mk,v 1.686 2011/10/28 06:28:48 mrg Exp $
+#      $NetBSD: bsd.own.mk,v 1.687 2011/10/30 08:50:14 mrg Exp $
 
 # This needs to be before bsd.init.mk
 .if defined(BSD_MK_COMPAT_FILE)
@@ -49,13 +49,14 @@
 #
 # Platforms using GCC 4.5
 #
-.if ${MACHINE_ARCH} == "hppa"    || \
-    ${MACHINE_ARCH} == "i386"     || \
-    ${MACHINE_CPU}  == "mips"     || \
-    ${MACHINE_ARCH} == "powerpc"  || \
-    ${MACHINE_CPU}  == "sh3"      || \
-    ${MACHINE_ARCH} == "sparc"    || \
-    ${MACHINE_ARCH} == "sparc64"  || \
+.if ${MACHINE_ARCH} == "hppa"     || \
+    ${MACHINE_ARCH} == "i386"      || \
+    ${MACHINE_CPU}  == "mips"      || \
+    ${MACHINE_ARCH} == "powerpc"   || \
+    ${MACHINE_ARCH} == "powerpc64" || \
+    ${MACHINE_CPU}  == "sh3"       || \
+    ${MACHINE_ARCH} == "sparc"     || \
+    ${MACHINE_ARCH} == "sparc64"   || \
     ${MACHINE_ARCH} == "x86_64"
 HAVE_GCC?=    45
 .endif
@@ -78,12 +79,13 @@
 #
 # Platforms using GDB 7
 #
-.if ${MACHINE_ARCH} == "i386"     || \
-    ${MACHINE_ARCH} == "x86_64"   || \
-    ${MACHINE_ARCH} == "sparc64"  || \
-    ${MACHINE_ARCH} == "sparc"    || \
-    ${MACHINE_ARCH} == "arm"      || \
-    ${MACHINE_ARCH} == "powerpc"  || \
+.if ${MACHINE_ARCH} == "i386"      || \
+    ${MACHINE_ARCH} == "x86_64"    || \
+    ${MACHINE_ARCH} == "sparc64"   || \
+    ${MACHINE_ARCH} == "sparc"     || \
+    ${MACHINE_ARCH} == "arm"       || \
+    ${MACHINE_ARCH} == "powerpc"   || \
+    ${MACHINE_ARCH} == "powerpc64" || \
     ${MACHINE_CPU}  == "m68k"
 HAVE_GDB?= 7
 .else



Home | Main Index | Thread Index | Old Index