From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 249CA3858C5F; Thu, 8 Feb 2024 13:18:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 249CA3858C5F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1707398299; bh=Qr6H2Jq7Q6eR9aN+M8tWL9rmR5xItIRoscu2tEA1d1U=; h=From:To:Subject:Date:In-Reply-To:References:From; b=DRnA5Js9JsQeyTjv8Iq+svpMPXsFLe4RATX+5leR/iykeG5fXMAb5KkcUFpw05Vf5 vMA58LDiw09yYm73SzYSUWv59bC4R+aOlnLfAtNGwRIYYxYTQ36F4e0itd1FAYQvj7 awnEjtHclLSHxKV/DkN1/jpRrYtq1zt8qy8Sr3VE= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/112397] Two persistent libstdc++ test failures on x86_64-apple-darwin Date: Thu, 08 Feb 2024 13:18:18 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D112397 --- Comment #8 from Jakub Jelinek --- (In reply to Iain Sandoe from comment #7) > (In reply to Jakub Jelinek from comment #6) > > (In reply to Jonathan Wakely from comment #5) > > > Maybe: > > >=20 > > > ifneq ($(filter %-darwin%,${host_alias}),) > >=20 > > ${target_os} instead maybe? >=20 > I'll give that a try (we have similar stanzas in the Ada build stuff) Of course for ${target_os} one would need to leave out the - before darwin, because target_os will be darwinsomething, so ifneq ($(filter darwin%,${target_os}),) Or host_os? Never know what one should use in target libraries, maybe host= and target is the same there, just build might be different?=