From f590308bb581e671a63ccfabd573074826914678 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 26 Jun 2025 15:55:06 +0800 Subject: [PATCH 1/2] Add stubs for iOS strip. --- iOS/Resources/bin/arm64-apple-ios-simulator-strip | 2 ++ iOS/Resources/bin/arm64-apple-ios-strip | 2 ++ iOS/Resources/bin/x86_64-apple-ios-simulator-strip | 2 ++ 3 files changed, 6 insertions(+) create mode 100755 iOS/Resources/bin/arm64-apple-ios-simulator-strip create mode 100755 iOS/Resources/bin/arm64-apple-ios-strip create mode 100755 iOS/Resources/bin/x86_64-apple-ios-simulator-strip diff --git a/iOS/Resources/bin/arm64-apple-ios-simulator-strip b/iOS/Resources/bin/arm64-apple-ios-simulator-strip new file mode 100755 index 00000000000000..fd59d309b73a20 --- /dev/null +++ b/iOS/Resources/bin/arm64-apple-ios-simulator-strip @@ -0,0 +1,2 @@ +#!/bin/sh +xcrun --sdk iphonesimulator${IOS_SDK_VERSION} strip -arch arm64 "$@" diff --git a/iOS/Resources/bin/arm64-apple-ios-strip b/iOS/Resources/bin/arm64-apple-ios-strip new file mode 100755 index 00000000000000..75e823a3d02d61 --- /dev/null +++ b/iOS/Resources/bin/arm64-apple-ios-strip @@ -0,0 +1,2 @@ +#!/bin/sh +xcrun --sdk iphoneos${IOS_SDK_VERSION} strip -arch arm64 "$@" diff --git a/iOS/Resources/bin/x86_64-apple-ios-simulator-strip b/iOS/Resources/bin/x86_64-apple-ios-simulator-strip new file mode 100755 index 00000000000000..c5cfb28929195a --- /dev/null +++ b/iOS/Resources/bin/x86_64-apple-ios-simulator-strip @@ -0,0 +1,2 @@ +#!/bin/sh +xcrun --sdk iphonesimulator${IOS_SDK_VERSION} strip -arch x86_64 "$@" From 202b5b0825c6b57453f9e20852f687114054e84d Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 26 Jun 2025 15:58:20 +0800 Subject: [PATCH 2/2] Add blurb. --- .../Tools-Demos/2025-06-26-15-58-13.gh-issue-135968.C4v_-W.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Tools-Demos/2025-06-26-15-58-13.gh-issue-135968.C4v_-W.rst diff --git a/Misc/NEWS.d/next/Tools-Demos/2025-06-26-15-58-13.gh-issue-135968.C4v_-W.rst b/Misc/NEWS.d/next/Tools-Demos/2025-06-26-15-58-13.gh-issue-135968.C4v_-W.rst new file mode 100644 index 00000000000000..1c0b3825c71c1d --- /dev/null +++ b/Misc/NEWS.d/next/Tools-Demos/2025-06-26-15-58-13.gh-issue-135968.C4v_-W.rst @@ -0,0 +1 @@ +Stubs for ``strip`` are now provided as part of an iOS install.