Cross-compile gifski for iOS
mainTo build the library for iOS manually:
- Add the target:
rustup target add aarch64-apple-ios - Build the library:
rustup update && cargo build --lib --release --target=aarch64-apple-ios
The static library will be created at ./target/aarch64-apple-ios/release/libgifski.a. You can then add this to your Xcode project.
rustup target add aarch64-apple-ios
rustup update
cargo build --lib --release --target=aarch64-apple-ios