Skip to content

Commit dfc683f

Browse files
freakboy3742miss-islington
authored andcommitted
gh-135968: Add iOS binary stubs for strip (GH-135970)
Adds iOS binary stubs for invoking `strip` (cherry picked from commit 0c6c09b) Co-authored-by: Russell Keith-Magee <[email protected]>
1 parent b99a417 commit dfc683f

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Stubs for ``strip`` are now provided as part of an iOS install.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
xcrun --sdk iphonesimulator${IOS_SDK_VERSION} strip -arch arm64 "$@"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
xcrun --sdk iphoneos${IOS_SDK_VERSION} strip -arch arm64 "$@"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
xcrun --sdk iphonesimulator${IOS_SDK_VERSION} strip -arch x86_64 "$@"

0 commit comments

Comments
 (0)