Skip to content

Commit

Permalink
build: state rust targets explicitly in swift build script
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Nov 21, 2023
1 parent 24e09a4 commit 0c0dfd5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions bdk-swift/build-local-swift.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@

rustup install 1.73.0
rustup component add rust-src
rustup target add aarch64-apple-ios x86_64-apple-ios
rustup target add aarch64-apple-ios-sim
rustup target add aarch64-apple-darwin x86_64-apple-darwin
rustup target add aarch64-apple-ios # iOS ARM64
rustup target add x86_64-apple-ios # iOS x86_64
rustup target add aarch64-apple-ios-sim # simulator mac M1
rustup target add aarch64-apple-darwin # mac M1
rustup target add x86_64-apple-darwin # mac x86_64

pushd bdk-ffi
mkdir -p Sources/BitcoinDevKit
Expand Down

0 comments on commit 0c0dfd5

Please sign in to comment.