Last active
March 17, 2024 05:18
-
-
Save gubatron/6cce9da7654644db7b9b81b49b7798dd to your computer and use it in GitHub Desktop.
Building lurl-lab/lurk-rs dart binding for iOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone [email protected]:lurk-lab/lurk-rs.git | |
cd lurk-rs | |
git submodule update --init --recursive | |
rustup target add aarch64-apple-ios | |
cargo build --target aarch64-apple-ios --release | |
ls -l target/aarch64-apple-ios/release/ | |
cd target/aarch64-apple-ios/release | |
ar x liblurk.rlib | |
ar rcs liblurk.a *.o | |
ls -l liblurk.a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment