summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2019-10-19 20:53:16 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2019-10-19 22:20:34 +0100
commitb540ee3a734750265d5ca4a463a97a5d508ca3ff (patch)
tree82797e8202ca08a5c5a58409d0ac679a2f4e5c7b /eclass/toolchain.eclass
parenttoolchain.eclass: add bug references to comments (diff)
downloadgentoo-b540ee3a734750265d5ca4a463a97a5d508ca3ff.tar.gz
gentoo-b540ee3a734750265d5ca4a463a97a5d508ca3ff.tar.bz2
gentoo-b540ee3a734750265d5ca4a463a97a5d508ca3ff.zip
toolchain.eclass: drop support for deprecated mingw-runtime
Bug: https://bugs.gentoo.org/584858 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r--eclass/toolchain.eclass3
1 files changed, 1 insertions, 2 deletions
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