From b540ee3a734750265d5ca4a463a97a5d508ca3ff Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 19 Oct 2019 20:53:16 +0100 Subject: toolchain.eclass: drop support for deprecated mingw-runtime Bug: https://bugs.gentoo.org/584858 Signed-off-by: Sergei Trofimovich --- eclass/toolchain.eclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'eclass/toolchain.eclass') diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index aec5ba4314c8..fe8944833a97 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1014,7 +1014,7 @@ toolchain_src_configure() { # disable a bunch of features or gcc goes boom local needed_libc="" case ${CTARGET} in - *-linux) needed_libc=no-fucking-clue;; + *-linux) needed_libc=error-unknown-libc;; *-dietlibc) needed_libc=dietlibc;; *-elf|*-eabi) needed_libc=newlib @@ -1042,7 +1042,6 @@ toolchain_src_configure() { *-cygwin) needed_libc=cygwin;; x86_64-*-mingw*|\ *-w64-mingw*) needed_libc=mingw64-runtime;; - mingw*|*-mingw*) needed_libc=mingw-runtime;; avr) confgcc+=( --enable-shared --disable-threads );; esac if [[ -n ${needed_libc} ]] ; then -- cgit v1.2.3-65-gdbad