From a2ce9d6586809a4fa4f2e441732c9bc4687375ec Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 10 Feb 2021 00:10:27 -0800 Subject: cross-compilation helper scripts for macOS --- extra/build_macos.sh | 26 ++++++++++++++++++++++++++ extra/osxcross_setup.sh | 7 +++++++ 2 files changed, 33 insertions(+) create mode 100755 extra/build_macos.sh create mode 100755 extra/osxcross_setup.sh diff --git a/extra/build_macos.sh b/extra/build_macos.sh new file mode 100755 index 0000000..5990436 --- /dev/null +++ b/extra/build_macos.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +MACOS_TARGET="x86_64-apple-darwin" + +echo "Building target for platform ${MACOS_TARGET}" +echo + +# Add osxcross toolchain to path +export PATH="$(pwd)/osxcross/target/bin:$PATH" + +# Make libz-sys (git2-rs -> libgit2-sys -> libz-sys) build as a statically linked lib +# This prevents the host zlib from being linked +export LIBZ_SYS_STATIC=1 + +# make libsodium happy +export PKG_CONFIG_ALLOW_CROSS=1 +#export SODIUM_USE_PKG_CONFIG=1 + +# Use Clang for C/C++ builds +export CC=o64-clang +export CXX=o64-clang++ + +cargo build --release --target "${MACOS_TARGET}" + +echo +echo Done diff --git a/extra/osxcross_setup.sh b/extra/osxcross_setup.sh new file mode 100755 index 0000000..c0ae94f --- /dev/null +++ b/extra/osxcross_setup.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +git clone https://github.com/tpoechtrager/osxcross +cd osxcross +wget -nc https://s3.dockerproject.org/darwin/v2/MacOSX10.10.sdk.tar.xz +mv MacOSX10.10.sdk.tar.xz tarballs/ +UNATTENDED=yes OSX_VERSION_MIN=10.7 ./build.sh -- cgit v1.2.3