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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6A3C515800C for ; 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 9CD11E07E1; Wed, 28 Dec 2022 15:17:58 +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 76AB7E07E1 for ; 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 6240A340D54 for ; Wed, 28 Dec 2022 15:17:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 983E172B for ; Wed, 28 Dec 2022 15:17:55 +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: <1672240629.0f55fd20c5d70f84bbf009a8f4c08ad1558ba9b0.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: 0f55fd20c5d70f84bbf009a8f4c08ad1558ba9b0 X-VCS-Branch: master Date: Wed, 28 Dec 2022 15:17:55 +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: 82fa96b4-58c9-406d-9c11-79631e7be128 X-Archives-Hash: e6c33f1ecc43fe2f9d2385ff7a0e0841 commit: 0f55fd20c5d70f84bbf009a8f4c08ad1558ba9b0 Author: Sam James gentoo org> AuthorDate: Wed Dec 28 15:17:09 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Dec 28 15:17:09 2022 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=0f55fd20 crossdev: force off hardened in more cases (avoid leaking hardened from host) See: c439961a06625b27d39d683beee00e8c3a54005f See: cb41e7e05c55f6ef64e7a617869bbb644899e724 Signed-off-by: Sam James gentoo.org> crossdev | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crossdev b/crossdev index 1b37e47..caf912e 100755 --- a/crossdev +++ b/crossdev @@ -290,6 +290,7 @@ parse_target() { 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" ;; mingw*|*-mingw*) @@ -333,6 +334,7 @@ parse_target() { LPKG="newlib" KPKG="[none]" STAGE_DEFAULT=${STAGE_LIBC} + GMASK+=" hardened" GUSE+=" cxx -openmp" #489798 GUSE+=" -fortran" #589672, needs syscalls GUSE+=" -hardened" #687598, needs -fstack-check=specific support