Closed
Description
Thanks for the awesome tool.
I was wondering if it is possible to cross compile to aarch64-apple-darwin rust target (arm64 darwin) since this is using https://github.com/tpoechtrager/osxcross? If so can an example be given and update the read me with it? I know the Readme talks about it but it is not clear and it doesn't work.
Example of how I am trying to compile the project:
docker run --rm \
--volume "${PWD}/":/root/src:z \
--workdir /root/src \
joseluisq/rust-linux-darwin-builder:1.57.0 \
sh -c "rustup target add aarch64-apple-darwin && CC=oa64-clang CXX=oa64-clang++ LIBZ_SYS_STATIC=1 cargo build --release --target aarch64-apple-darwin"