From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1698) id C566D3858C42; Mon, 22 Apr 2024 18:49:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C566D3858C42 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1713811747; bh=kFKO094Zus7n/pBTQqHHe7bWEzHbexFPHBe+XhrjQr4=; h=From:To:Subject:Date:From; b=TtTkOsZnpwb+r3poeSv+qJmKJN0qFbIplTJhS3qRDaA4KiEVqfvnzQ9VIBwzEsIEd 4ip8IksVYrAY/jV5XMeIE6+yTiaY/4WFcInfLsG0YF50llu/neWxJ3Sow3sDCMh2Vo GnGkUhokKLQ0fwWCAJQndht/u4NBWD4PtV39UAfk= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Iain D Sandoe To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-10384] Darwin, ppc: Add system stubs for all 32b PPC X-Act-Checkin: gcc X-Git-Author: Iain Sandoe X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: 22203bd7cfe463fce6f3a84118f9479d37e48570 X-Git-Newrev: be44511b14d14e1e3d7230a7a64db5a3a0ed0129 Message-Id: <20240422184907.C566D3858C42@sourceware.org> Date: Mon, 22 Apr 2024 18:49:06 +0000 (GMT) List-Id: https://gcc.gnu.org/g:be44511b14d14e1e3d7230a7a64db5a3a0ed0129 commit r12-10384-gbe44511b14d14e1e3d7230a7a64db5a3a0ed0129 Author: Iain Sandoe Date: Wed Jul 26 14:31:02 2023 +0100 Darwin, ppc: Add system stubs for all 32b PPC This is a minor adjustment to make the GCC behaviour better match the old system tools. Signed-off-by: Iain Sandoe gcc/ChangeLog: * config/rs6000/darwin.h (LIB_SPEC): Include libSystemStubs for all 32b Darwin PowerPC cases. (cherry picked from commit b3ab28c3e85af7995fffb87eb190ef942b7e9e4a) Diff: --- gcc/config/rs6000/darwin.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h index b5cef42610f..626b40dab29 100644 --- a/gcc/config/rs6000/darwin.h +++ b/gcc/config/rs6000/darwin.h @@ -98,7 +98,7 @@ Include libmx when targeting Darwin 7.0 and above, but before libSystem, since the functions are actually in libSystem but for 7.x compatibility we want them to be looked for in libmx first. - Include libSystemStubs when compiling against 10.3 - 10.5 SDKs (we assume + Include libSystemStubs when compiling against 10.3 - 10.6 SDKs (we assume this is the case when targetting these) - but not for 64-bit long double. Don't do either for m64, the library is either a dummy or non-existent. */ @@ -107,8 +107,8 @@ #define LIB_SPEC \ "%{!static: \ %{!m64:%{!mlong-double-64: \ - %{pg:%:version-compare(>< 10.3 10.5 mmacosx-version-min= -lSystemStubs_profile)} \ - %{!pg:%:version-compare(>< 10.3 10.5 mmacosx-version-min= -lSystemStubs)} \ + %{pg:%:version-compare(>< 10.3 10.7 mmacosx-version-min= -lSystemStubs_profile)} \ + %{!pg:%:version-compare(>< 10.3 10.7 mmacosx-version-min= -lSystemStubs)} \ %:version-compare(>< 10.3 10.4 mmacosx-version-min= -lmx)}} \ -lSystem \ }"