Source-Changes-HG archive

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

[src/trunk]: src/share/mk switch i386, sparc and sparc64 to GCC 6.



details:   https://anonhg.NetBSD.org/src/rev/50b55540d1ab
branches:  trunk
changeset: 829931:50b55540d1ab
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sat Feb 17 21:46:15 2018 +0000

description:
switch i386, sparc and sparc64 to GCC 6.

diffstat:

 share/mk/bsd.own.mk |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r 962fc15abebd -r 50b55540d1ab share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk       Sat Feb 17 21:32:22 2018 +0000
+++ b/share/mk/bsd.own.mk       Sat Feb 17 21:46:15 2018 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.own.mk,v 1.1033 2018/02/11 03:44:53 christos Exp $
+#      $NetBSD: bsd.own.mk,v 1.1034 2018/02/17 21:46:15 mrg Exp $
 
 # This needs to be before bsd.init.mk
 .if defined(BSD_MK_COMPAT_FILE)
@@ -66,7 +66,11 @@
 #
 .if ${MACHINE_CPU} == "aarch64"
 HAVE_GCC?=     0
-.elif ${MACHINE} == "amd64"
+.elif \
+    ${MACHINE_CPU} == "x86_64" || \
+    ${MACHINE_CPU} == "i386" || \
+    ${MACHINE_CPU} == "sparc" || \
+    ${MACHINE_CPU} == "sparc64"
 HAVE_GCC?=     6
 .else
 HAVE_GCC?=     5



Home | Main Index | Thread Index | Old Index