From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C98841581F3 for ; Sat, 30 Nov 2024 02:08:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17860E07F6; Sat, 30 Nov 2024 02:08:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CF1A1E07D4 for ; Sat, 30 Nov 2024 02:08:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18F02342FB5 for ; Sat, 30 Nov 2024 02:08:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BBB51E06 for ; Sat, 30 Nov 2024 02:08:26 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732932500.f212c4740e1e16748d965bbd80155fcdfd4786a1.sam@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f212c4740e1e16748d965bbd80155fcdfd4786a1 X-VCS-Branch: master Date: Sat, 30 Nov 2024 02:08:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3a1c2224-d953-4e8f-9792-8f556cb91f0f X-Archives-Hash: f6b7da39a4783b9cd8b5eddf72094136 commit: f212c4740e1e16748d965bbd80155fcdfd4786a1 Author: Sam James gentoo org> AuthorDate: Sat Nov 30 02:06:58 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 30 02:08:20 2024 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=f212c474 crossdev: nvptx target fixes * We don't need linux-headers * Set the same GMASK/GUSE as newlib (not sure how useful the multilib bit here is, mind) Bug: https://bugs.gentoo.org/945296 Signed-off-by: Sam James gentoo.org> crossdev | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/crossdev b/crossdev index 82183bb..60db465 100755 --- a/crossdev +++ b/crossdev @@ -300,9 +300,19 @@ parse_target() { ;; nvptx*) + KPKG="[none]" BPKG="nvptx-tools" LPKG="newlib" STAGE_DEFAULT=${STAGE_LIBC} + + # TODO: deduplicate this with newlib block below + GMASK+=" default-stack-clash-protection hardened ssp" + GUSE+=" cxx -openmp" #489798 + GUSE+=" -fortran" #589672, needs syscalls + GUSE+=" -hardened" #687598, needs -fstack-check=specific support + GUSE+=" -default-stack-clash-protection -ssp" # SSP isn't supported for freestanding anyway + MULTILIB_USE="yes" #407275 + WITH_DEF_HEADERS="no" ;; # due to upstream lameness, build C/C++ at first glance