Hi everyone, With the stabilization of gcc-6.4.0, the uclibc build broke because the eclass requires UCLIBC_VER to be define on uclibc systems else it will die(). Since uclibc specific patches are no longer needed in gcc-6 and above, we don't want to error out in the eclass when the patchset is not found.
Note that there are some musl specific patches which I would like to migrate out of the overlay and into the tree. In a future patch, I'd like to duplicate the uclibc code for musl in toolchain.eclass. Feedback welcome. -- Anthony G. Basile, Ph.D. Gentoo Linux Developer [Hardened] E-Mail : bluen...@gentoo.org GnuPG FP : 1FED FAD9 D82C 52A5 3BAB DC79 9384 FA6E F52D 4BBA GnuPG ID : F52D4BBA
From 909298f47c98f698923c834f67e53bed3bc6ab25 Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" <bluen...@gentoo.org> Date: Sat, 25 Nov 2017 08:47:41 -0500 Subject: [PATCH] eclass/toolchain.eclass: do not die if uclibc patches are not available gcc-6 and above no longer needs uclibc specific patches, so we don't die if the patchset is not available. We do, however, still apply it if UCLIBC_VER is defined in the ebuild to future proof the code in case we need to reintroduce the patchset in the future. --- eclass/toolchain.eclass | 3 --- 1 file changed, 3 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 503f7dbe94f..58d859dfaf3 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -378,9 +378,6 @@ toolchain_pkg_pretend() { "in your make.conf if you want to use this version." fi - [[ -z ${UCLIBC_VER} ]] && [[ ${CTARGET} == *-uclibc* ]] && \ - die "Sorry, this version does not support uClibc" - if ! use_if_iuse cxx ; then use_if_iuse go && ewarn 'Go requires a C++ compiler, disabled due to USE="-cxx"' use_if_iuse objc++ && ewarn 'Obj-C++ requires a C++ compiler, disabled due to USE="-cxx"' -- 2.13.6