diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-11-22 20:40:14 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-11-22 20:40:14 +0000 |
commit | a7a785c24d80eb22cc6f612d907765b695a7001e (patch) | |
tree | 020857d7c0c1685ca0334e30de2e1778592e1797 /crossdev | |
parent | crossdev: disable USE=libraries for stage1 install (diff) | |
download | crossdev-a7a785c24d80eb22cc6f612d907765b695a7001e.tar.gz crossdev-a7a785c24d80eb22cc6f612d907765b695a7001e.tar.bz2 crossdev-a7a785c24d80eb22cc6f612d907765b695a7001e.zip |
crossdev: default to latest newlib even for stable toolchains.
::gentoo does not have stable keywords for newlib for a while.
Let's default to 'latest' to make standard use case to just work.
Reported-by: Thymo van Beers
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'crossdev')
-rwxr-xr-x | crossdev | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -858,11 +858,14 @@ for with in HEADERS ; do [[ ${!var} == "COW" ]] && eval ${var}=${!defvar} done -# ::gentoo has no stable 'mingw64-runtime'. Let's default to 'latest' -# unles suser specified something else. +# ::gentoo has no stable 'mingw64-runtime' or 'newlib'. +# Let's default to 'latest' unles suser specified something else. if [[ ${LPKG} == "mingw64-runtime" && ${LVER} == "[stable]" ]]; then LVER="[latest]" fi +if [[ ${LPKG} == "newlib" && ${LVER} == "[stable]" ]]; then + LVER="[latest]" +fi show_target_cfg() { local pkgs crosspkgs=() |