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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D1EEB13933E for ; Sat, 17 Jul 2021 23:38:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3828CE0DA3; Sat, 17 Jul 2021 23:38:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 165F4E0DA3 for ; Sat, 17 Jul 2021 23:38:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF95A3406C2 for ; Sat, 17 Jul 2021 23:38:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B46125 for ; Sat, 17 Jul 2021 23:38:53 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1626565078.5d7a0f2bd35ea01f24883bc2e21e1bda5458584e.slyfox@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 5d7a0f2bd35ea01f24883bc2e21e1bda5458584e X-VCS-Branch: master Date: Sat, 17 Jul 2021 23:38:53 +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: b2b7e0d5-0625-4b58-8135-b0d92d67872c X-Archives-Hash: ea349e8cf93c941874fe53fb387db468 commit: 5d7a0f2bd35ea01f24883bc2e21e1bda5458584e Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Jul 17 23:37:58 2021 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Jul 17 23:37:58 2021 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=5d7a0f2b crossdev: disable USE=sanitize for gcc-stage2 as well Reported-by: tt_1 Bug: https://bugs.gentoo.org/799707 Signed-off-by: Sergei Trofimovich gentoo.org> crossdev | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crossdev b/crossdev index 57ffbb5..cde01c2 100755 --- a/crossdev +++ b/crossdev @@ -788,7 +788,10 @@ AUTOGEN_TAG="# Autogenerated and managed by crossdev" GUSE_DISABLE="-boundschecking -d -gcj -gtk -libffi -mudflap -objc -objc++ -objc-gc" # These are disabled only for stage1 gcc. Normally need libc presence. GUSE_DISABLE_STAGE_1="${GUSE_DISABLE} -fortran -go -jit -cxx -mpx -openmp -sanitize -vtv" -GUSE_DISABLE_STAGE_2="${GUSE_DISABLE}" +# These are also disabled for stage2, but could be used later if dependencies +# are installed into ${SYSROOT}: +# - sanitize needs crypt.h: #799707 +GUSE_DISABLE_STAGE_2="${GUSE_DISABLE} -sanitize" # mingw64-runtime needs a stage2 compiler to build libraries: https://bugs.gentoo.org/751295 LUSE_DISABLE="-libraries"