Skip to content

Commit ef2e8d4

Browse files
committed
Handle iOS Simulator platform builds
1 parent 09eba8c commit ef2e8d4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

xcode/LDK/build-libldk.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ if [[ ${ACTION:-build} = "build" || $ACTION = "install" ]]; then
2828

2929
if [[ $PLATFORM_NAME = "macosx" ]]; then
3030
RUST_TARGET_OS="darwin"
31+
elif [[ $PLATFORM_NAME = "iphonesimulator" ]]; then
32+
RUST_TARGET_OS="ios-simulator"
3133
else
3234
RUST_TARGET_OS="ios"
3335
fi

0 commit comments

Comments
 (0)