commit: 2cef8f3d996277a8f44a49b7c220ab8ba2a9e435 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Nov 30 10:16:55 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Nov 30 10:18:24 2024 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=2cef8f3d
crossdev: nvptx needs multilib See https://gcc.gnu.org/legacy-ml/gcc-help/2020-01/msg00106.html. Bug: https://bugs.gentoo.org/945296 Signed-off-by: Sam James <sam <AT> gentoo.org> crossdev | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crossdev b/crossdev index 1c2650f..887cf7a 100755 --- a/crossdev +++ b/crossdev @@ -1427,7 +1427,8 @@ set_portage() { mask+=" -multilib" force+=" multilib" ;; - *-newlib|*-elf|*-eabi) + nvptx*|*-newlib|*-elf|*-eabi) + # nvptx: needs multilib because of https://gcc.gnu.org/legacy-ml/gcc-help/2020-01/msg00106.html. mask+=" -multilib" force+=" multilib" ;;