build: use correct rustup command for ios library build script

This commit is contained in:
thunderbiscuit 2024-04-19 14:47:26 -04:00
parent 4d737d3393
commit 4f8b7f4ba5
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -3,7 +3,7 @@
# The results of this script can be used for locally testing your SPM package adding a local package # The results of this script can be used for locally testing your SPM package adding a local package
# to your application pointing at the bdk-swift directory. # to your application pointing at the bdk-swift directory.
rustup install 1.77.1 rustup default 1.77.1
rustup component add rust-src rustup component add rust-src
rustup target add aarch64-apple-ios # iOS arm64 rustup target add aarch64-apple-ios # iOS arm64
rustup target add x86_64-apple-ios # iOS x86_64 rustup target add x86_64-apple-ios # iOS x86_64