From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1472190-garchives=archives.gentoo.org@lists.gentoo.org> 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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B2B0D15800C for <garchives@archives.gentoo.org>; Wed, 28 Dec 2022 15:17:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5E3AE0826; Wed, 28 Dec 2022 15:17:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0073E0826 for <gentoo-commits@lists.gentoo.org>; Wed, 28 Dec 2022 15:17:58 +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 8803D340E23 for <gentoo-commits@lists.gentoo.org>; Wed, 28 Dec 2022 15:17:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB9897D0 for <gentoo-commits@lists.gentoo.org>; Wed, 28 Dec 2022 15:17:55 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1672240660.82dd3e00f1838f3ce00c4a156e67d73bbb1a2760.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: 82dd3e00f1838f3ce00c4a156e67d73bbb1a2760 X-VCS-Branch: master Date: Wed, 28 Dec 2022 15:17:55 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 25d49e1b-330f-4d10-9af4-d19fd8f64e9f X-Archives-Hash: 981c9d9ed3845a2ad43162e2decd0f50 commit: 82dd3e00f1838f3ce00c4a156e67d73bbb1a2760 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Dec 28 15:17:40 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Dec 28 15:17:40 2022 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=82dd3e00 crossdev: adapt to new USE=default-stack-clash-protection Signed-off-by: Sam James <sam <AT> gentoo.org> crossdev | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crossdev b/crossdev index caf912e..de9ce7a 100755 --- a/crossdev +++ b/crossdev @@ -289,8 +289,8 @@ parse_target() { KPKG="[none]"; LCAT="dev-util"; LPKG="mingw64-runtime" WITH_DEF_HEADERS="yes" # gcc can't boot without headers: bug #693770 - GUSE+=" -hardened" # gcc ICEs as libssp/ssp.c:186:1: internal compiler error: in seh_emit_stackalloc - GMASK+=" hardened" + GMASK+=" default-stack-clash-protection hardened" + GUSE+=" -default-stack-clash-protection -hardened" # gcc ICEs as libssp/ssp.c:186:1: internal compiler error: in seh_emit_stackalloc ;; mingw*|*-mingw*) @@ -440,7 +440,7 @@ parse_target() { if [[ $ssp_support = "no" ]]; then # ssp is >=gcc-6, nossp is <gcc-6 # blacklist hardened too because it'll force -fstack-clash-protection - GMASK+=" ssp hardened -nossp" + GMASK+=" default-stack-clash-protection ssp hardened -nossp" GFORCE+=" nossp" fi }