From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 02BC63857C75; Wed, 6 Mar 2024 20:32:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 02BC63857C75 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1709757123; bh=N/v1RXKUXa3yBrEOssxigf/zR6itRwsg0JcedDy3M3M=; h=From:To:Subject:Date:In-Reply-To:References:From; b=oFeHBtjD328/q1d/yawCfhSkxgJrQOXRxQKWfN3/DYrMQ0pi1qYKafxrIslX80a+3 PQBxATjFys+vUrjIcPRKAVoWxfjL/3AlrGv8iYQBEVeF1wOJeGZb8kXH6QPRa6LqUZ t/aBZxBwUFumn0n4LaqG5BH7uPT6N+6oPTDAVdeA= From: "iains at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/114233] Newly-introduced pr113617.C test fails on Darwin Date: Wed, 06 Mar 2024 20:32:02 +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: link-failure, testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: iains 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=3D114233 --- Comment #1 from Iain Sandoe --- note Darwin's linker does not, by default permit symbols to be undefined. = If the test case requires allowing undefined symbols to complete, then either = we need to specify them thus: -Wl,-U,_XXXXXXX (for each symbol) or if they are unknown at build time, but required dynamically at runtime... -Wl,-undefined,dynamic_lookup ( I am not sure if this is a requirement of the test, or some artefact of t= he test case reduction ).=