aboutsummaryrefslogtreecommitdiff
path: root/targets
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2020-02-29 03:25:51 +0000
committerEd Maste <emaste@FreeBSD.org>2020-02-29 03:25:51 +0000
commit57f804675e65951d630a38d94c07be4a27ae4053 (patch)
tree08158fea50735ed44fbd645ce7cf2c24beb7c11b /targets
parent6be21eb77807afea19219b8fd2ee9c0a4609027d (diff)
downloadsrc-57f804675e65951d630a38d94c07be4a27ae4053.tar.gz
src-57f804675e65951d630a38d94c07be4a27ae4053.zip
remove GCC 4.2.1 build infrastructure
As described in Warner's email message[1] to the FreeBSD-arch mailing list we have reached GCC 4.2.1's retirement date. At this time all supported architectures either use in-tree Clang, or rely on external toolchain (i.e., a contemporary GCC version from ports). GCC 4.2.1 was released July 18, 2007 and was imported into FreeBSD later that year, in r171825. GCC has served us well, but version 4.2.1 is obsolete and not used by default on any architecture in FreeBSD. It does not support modern C and does not support arm64 or RISC-V. Thanks to everyone responsible for maintaining, updating, and testing GCC in the FreeBSD base system over the years. So long, and thanks for all the fish. [1] https://lists.freebsd.org/pipermail/freebsd-arch/2020-January/019823.html PR: 228919 Reviewed by: brooks, imp Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D23124
Notes
Notes: svn path=/head/; revision=358454
Diffstat (limited to 'targets')
-rw-r--r--targets/pseudo/bootstrap-tools/Makefile4
-rw-r--r--targets/pseudo/toolchain/Makefile.depend3
-rw-r--r--targets/pseudo/userland/gnu/Makefile.depend1
3 files changed, 2 insertions, 6 deletions
diff --git a/targets/pseudo/bootstrap-tools/Makefile b/targets/pseudo/bootstrap-tools/Makefile
index 525320702a41..08ed40273c17 100644
--- a/targets/pseudo/bootstrap-tools/Makefile
+++ b/targets/pseudo/bootstrap-tools/Makefile
@@ -48,7 +48,7 @@ BSARGS= DESTDIR= \
MK_INCLUDES=yes
# We will handle building the toolchain and cross-compiler.
-BSARGS+= MK_CROSS_COMPILER=no MK_CLANG=no MK_GCC=no
+BSARGS+= MK_CROSS_COMPILER=no MK_CLANG=no
DISTRIB_ENV= INSTALL="sh ${SRCTOP}/tools/install.sh" NO_FSCHG=1 MK_TESTS=no
legacy: .MAKE ${META_DEPS}
@@ -78,7 +78,7 @@ BSTCENV= \
${BSENV:MPATH=*}
BSTCARGS= \
- ${BSARGS:NDESTDIR=*:NOBJTOP=*:NOBJROOT=*:NMK_CROSS_COMPILER=*:NMK_CLANG=*:NMK_GCC=*} \
+ ${BSARGS:NDESTDIR=*:NOBJTOP=*:NOBJROOT=*:NMK_CROSS_COMPILER=*:NMK_CLANG=*} \
BUILD_DIRDEPS=yes \
LLVM_TBLGEN=${TOOLSDIR}/usr/bin/llvm-tblgen \
CLANG_TBLGEN=${TOOLSDIR}/usr/bin/clang-tblgen \
diff --git a/targets/pseudo/toolchain/Makefile.depend b/targets/pseudo/toolchain/Makefile.depend
index c3af1f14718a..9ac651b4963b 100644
--- a/targets/pseudo/toolchain/Makefile.depend
+++ b/targets/pseudo/toolchain/Makefile.depend
@@ -24,8 +24,5 @@ DIRDEPS= \
.if ${MK_CLANG_BOOTSTRAP} == "yes"
DIRDEPS+= targets/pseudo/clang
.endif
-.if ${MK_GCC_BOOTSTRAP} == "yes"
-DIRDEPS+= targets/pseudo/gcc
-.endif
.include <dirdeps.mk>
diff --git a/targets/pseudo/userland/gnu/Makefile.depend b/targets/pseudo/userland/gnu/Makefile.depend
index d5c025de9846..397cc03c7f71 100644
--- a/targets/pseudo/userland/gnu/Makefile.depend
+++ b/targets/pseudo/userland/gnu/Makefile.depend
@@ -9,7 +9,6 @@
DIRDEPS = \
gnu/lib/libdialog \
gnu/lib/libgcov \
- gnu/lib/libgomp \
gnu/lib/libregex/doc \
gnu/lib/libstdc++ \
gnu/lib/libsupc++ \