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 BC2BD1581F3 for ; Sat, 30 Nov 2024 02:55:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED546E0788; Sat, 30 Nov 2024 02:55:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9946EE0788 for ; Sat, 30 Nov 2024 02:55:21 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8687933BE32 for ; Sat, 30 Nov 2024 02:55:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D540CAED for ; Sat, 30 Nov 2024 02:55:18 +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: <1732935132.c272f335f8b0df15f724e9ee3e2289a9deddbd11.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: c272f335f8b0df15f724e9ee3e2289a9deddbd11 X-VCS-Branch: master Date: Sat, 30 Nov 2024 02:55:18 +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: de0ee241-8e10-4d6e-95e6-73da2f1cef68 X-Archives-Hash: 453e42775580473c99988b3f2629fae2 commit: c272f335f8b0df15f724e9ee3e2289a9deddbd11 Author: Sam James gentoo org> AuthorDate: Sat Nov 30 02:28:09 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 30 02:52:12 2024 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=c272f335 crossdev: don't turn off openmp/fortran for nvptx openmp and fortran are rather useful for offloading. Not clear to me whether or not we can turn this on for newlib in general wrt bug #489798 and bug #589672. Bug: https://bugs.gentoo.org/489798 Bug: https://bugs.gentoo.org/589672 Bug: https://bugs.gentoo.org/945296 Signed-off-by: Sam James gentoo.org> crossdev | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crossdev b/crossdev index 60db465..f26da45 100755 --- a/crossdev +++ b/crossdev @@ -307,8 +307,7 @@ parse_target() { # TODO: deduplicate this with newlib block below GMASK+=" default-stack-clash-protection hardened ssp" - GUSE+=" cxx -openmp" #489798 - GUSE+=" -fortran" #589672, needs syscalls + GUSE+=" cxx" 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