Tue Mar 29 06:36:12 2016 UTC ()
switch alpha to GCC 5.3.  works just as well on my UP1000.


(mrg)
diff -r1.913 -r1.914 src/share/mk/bsd.own.mk

cvs diff -r1.913 -r1.914 src/share/mk/bsd.own.mk (expand / switch to unified diff)

--- src/share/mk/bsd.own.mk 2016/03/27 10:46:41 1.913
+++ src/share/mk/bsd.own.mk 2016/03/29 06:36:12 1.914
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: bsd.own.mk,v 1.913 2016/03/27 10:46:41 skrll Exp $ 1# $NetBSD: bsd.own.mk,v 1.914 2016/03/29 06:36:12 mrg Exp $
2 2
3# This needs to be before bsd.init.mk 3# This needs to be before bsd.init.mk
4.if defined(BSD_MK_COMPAT_FILE) 4.if defined(BSD_MK_COMPAT_FILE)
5.include <${BSD_MK_COMPAT_FILE}> 5.include <${BSD_MK_COMPAT_FILE}>
6.endif 6.endif
7 7
8.if !defined(_BSD_OWN_MK_) 8.if !defined(_BSD_OWN_MK_)
9_BSD_OWN_MK_=1 9_BSD_OWN_MK_=1
10 10
11MAKECONF?= /etc/mk.conf 11MAKECONF?= /etc/mk.conf
12.-include "${MAKECONF}" 12.-include "${MAKECONF}"
13 13
14# 14#
@@ -54,26 +54,27 @@ TOOLCHAIN_MISSING?= no @@ -54,26 +54,27 @@ TOOLCHAIN_MISSING?= no
54MKLLVM?= yes 54MKLLVM?= yes
55HAVE_LLVM?= yes 55HAVE_LLVM?= yes
56MKGCC?= no 56MKGCC?= no
57.endif 57.endif
58 58
59# 59#
60# GCC Using platforms. 60# GCC Using platforms.
61# 61#
62.if ${MKGCC:Uyes} != "no" 62.if ${MKGCC:Uyes} != "no"
63 63
64.if ${MACHINE_CPU} == "aarch64" 64.if ${MACHINE_CPU} == "aarch64"
65HAVE_GCC?= 0 65HAVE_GCC?= 0
66.elif \ 66.elif \
 67 ${MACHINE_ARCH} == "alpha" || \
67 ${MACHINE_ARCH} == "hppa" || \ 68 ${MACHINE_ARCH} == "hppa" || \
68 ${MACHINE} == "playstation2" || \ 69 ${MACHINE} == "playstation2" || \
69 ${MACHINE_ARCH} == "vax" 70 ${MACHINE_ARCH} == "vax"
70HAVE_GCC?= 53 71HAVE_GCC?= 53
71.else 72.else
72# Otherwise, default to GCC4.8 73# Otherwise, default to GCC4.8
73HAVE_GCC?= 48 74HAVE_GCC?= 48
74.endif 75.endif
75 76
76# 77#
77# Platforms that can't run a modern GCC natively 78# Platforms that can't run a modern GCC natively
78.if ${MACHINE_ARCH} == "m68000" 79.if ${MACHINE_ARCH} == "m68000"
79MKGCCCMDS?= no 80MKGCCCMDS?= no