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 7E102159C9B for ; Fri, 9 Aug 2024 11:39:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 598192BC0B8; Fri, 9 Aug 2024 11:39:19 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 199A12BC0B7 for ; Fri, 9 Aug 2024 11:39:19 +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 21FCC3430E3 for ; Fri, 9 Aug 2024 11:39:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B540174C for ; Fri, 9 Aug 2024 11:39:16 +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: <1723203480.c87ab053be64e6c9f7b9e4ab1cca3099e37471f0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c87ab053be64e6c9f7b9e4ab1cca3099e37471f0 X-VCS-Branch: master Date: Fri, 9 Aug 2024 11:39:16 +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: 34a2104a-08ee-4c72-ac34-064cedc54989 X-Archives-Hash: f94807324051512c5b91eeaf60f5a4d6 commit: c87ab053be64e6c9f7b9e4ab1cca3099e37471f0 Author: Sam James gentoo org> AuthorDate: Fri Aug 9 11:37:17 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Aug 9 11:38:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c87ab053 toolchain.eclass: drop *_FOR_TARGET in src_test We seem to fail way more tests like the gcov ones for this, I guess it overrides the flags it adds somehow. Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 6 ------ 1 file changed, 6 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 89af435dfbf6..1797fc59cf88 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1979,18 +1979,12 @@ toolchain_src_test() { nonfatal emake -C "${WORKDIR}"/build -k "${GCC_TESTS_CHECK_TARGET}" \ RUNTESTFLAGS=" \ ${GCC_TESTS_RUNTESTFLAGS} \ - CFLAGS_FOR_TARGET='${CFLAGS_FOR_TARGET:-${CFLAGS}}' \ - CXXFLAGS_FOR_TARGET='${CXXFLAGS_FOR_TARGET:-${CXXFLAGS}}' \ - LDFLAGS_FOR_TARGET='${LDFLAGS_FOR_TARGET:-${LDFLAGS}}' \ CFLAGS='${CFLAGS}' \ CXXFLAGS='${CXXFLAGS}' \ FCFLAGS='${FCFLAGS}' \ FFLAGS='${FFLAGS}' \ LDFLAGS='${LDFLAGS}' \ " \ - CFLAGS_FOR_TARGET="${CFLAGS_FOR_TARGET:-${CFLAGS}}" \ - CXXFLAGS_FOR_TARGET="${CXXFLAGS_FOR_TARGET:-${CXXFLAGS}}" \ - LDFLAGS_FOR_TARGET="${LDFLAGS_FOR_TARGET:-${LDFLAGS}}" \ CFLAGS="${CFLAGS}" \ CXXFLAGS="${CXXFLAGS}" \ FCFLAGS="${FCFLAGS}" \