diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-07-08 20:25:41 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-07-08 20:25:41 +0000 |
commit | 933022a0b195fe12232960cf6cc3e54fe63f7354 (patch) | |
tree | 48d1ccc5b4c217bf2e4fde0938f3004b673656f8 /share | |
parent | 017f9110d982ef75c7fdfe2168710daac14bba28 (diff) |
Switch hppa, i386 and powerpc to gcc4. Bump libc major to handle ABI corner
cases fixed in gcc4.
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.own.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index af17d94af95..c624451c98a 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.102 2010/05/26 14:39:38 kettenis Exp $ +# $OpenBSD: bsd.own.mk,v 1.103 2010/07/08 20:25:40 kettenis Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -36,7 +36,9 @@ ELF_TOOLCHAIN?= yes ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "vax" USE_GCC3?=no COMPILER_VERSION?=gcc2 -.elif ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "sparc64" +.elif ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "hppa" || \ + ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "powerpc" || \ + ${MACHINE_ARCH} == "sparc64" COMPILER_VERSION?=gcc4 .else USE_GCC3?=yes |