Skip to content

Commit

Permalink
fix(build): removed unsupported i386 architecture from build_xcframew…
Browse files Browse the repository at this point in the history
…ork.sh
  • Loading branch information
jguz-pubnub committed Apr 16, 2024
1 parent b2d9427 commit 00199f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Framework/scripts/build_xcframework.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if [[ "$SUPPORTED_PLATFORMS" =~ (iphone) ]]; then
DEVICE_SDK="iphoneos"
SIMULATOR_SDK="iphonesimulator"
DEVICE_TARGET_ARCHITECTURES="armv7 arm64"
SIMULATOR_TARGET_ARCHITECTURES="i386 x86_64 arm64"
SIMULATOR_TARGET_ARCHITECTURES="x86_64 arm64"
elif [[ "$SUPPORTED_PLATFORMS" =~ (appletv) ]]; then
DEVICE_SDK="appletvos"
SIMULATOR_SDK="appletvsimulator"
Expand All @@ -38,7 +38,7 @@ elif [[ "$SUPPORTED_PLATFORMS" =~ (watch) ]]; then
DEVICE_SDK="watchos"
SIMULATOR_SDK="watchsimulator"
DEVICE_TARGET_ARCHITECTURES="armv7k"
SIMULATOR_TARGET_ARCHITECTURES="i386 arm64"
SIMULATOR_TARGET_ARCHITECTURES="arm64"
fi


Expand Down

0 comments on commit 00199f0

Please sign in to comment.