Hi, thanks for maintaining sqlite-zstd.
The v0.3.5 release currently publishes sqlite_zstd-v0.3.5-x86_64-apple-darwin.tar.gz, but there is no Darwin arm64 / aarch64 Apple Silicon artifact. On an Apple Silicon Mac (Darwin arm64), I had to build the extension locally from the v0.3.5 tag.
Local build worked with a newer Rust toolchain:
rustup toolchain install 1.96.0-aarch64-apple-darwin --profile minimal
cargo +1.96.0-aarch64-apple-darwin build --release --features build_extension
# target/release/libsqlite_zstd.dylib
It would be useful if future releases included an official Darwin arm64 tarball, for example sqlite_zstd-v0.3.5-aarch64-apple-darwin.tar.gz or sqlite_zstd-v0.3.5-arm64-apple-darwin.tar.gz. This would make Apple Silicon usage and automation much simpler.
I searched existing issues and only found an Android cross-compile question (#7), not an Apple Silicon release artifact request.
Hi, thanks for maintaining sqlite-zstd.
The v0.3.5 release currently publishes
sqlite_zstd-v0.3.5-x86_64-apple-darwin.tar.gz, but there is no Darwin arm64 / aarch64 Apple Silicon artifact. On an Apple Silicon Mac (Darwin arm64), I had to build the extension locally from the v0.3.5 tag.Local build worked with a newer Rust toolchain:
rustup toolchain install 1.96.0-aarch64-apple-darwin --profile minimal cargo +1.96.0-aarch64-apple-darwin build --release --features build_extension # target/release/libsqlite_zstd.dylibIt would be useful if future releases included an official Darwin arm64 tarball, for example
sqlite_zstd-v0.3.5-aarch64-apple-darwin.tar.gzorsqlite_zstd-v0.3.5-arm64-apple-darwin.tar.gz. This would make Apple Silicon usage and automation much simpler.I searched existing issues and only found an Android cross-compile question (#7), not an Apple Silicon release artifact request.