From a3b819ded5b9252d09ef8070b1fb9c204fe32c9c Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Thu, 19 Dec 2024 09:50:14 +0000 Subject: [PATCH] [2024-12-19] Add build script --- build.sh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 build.sh diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..2cf2116 --- /dev/null +++ b/build.sh @@ -0,0 +1,35 @@ +# All OSes build for CPython 3.8, CPython 3.9, CPython 3.10, CPython 3.11, CPython 3.12, CPython 3.13, CPython 3.13t, PyPy 3.9, PyPy 3.10 + +### Source distribution +maturin sdist + +### Linux +# - aarch64-unknown-linux-gnu +# - i686-unknown-linux-gnu +# - x86_64-unknown-linux-gnu +# Add Rust targets +rustup target add aarch64-unknown-linux-gnu i686-unknown-linux-gnu x86_64-unknown-linux-gnu +# Build wheels +maturin build --release --target aarch64-unknown-linux-gnu --compatibility manylinux2014 --auditwheel repair --find-interpreter --zig --quiet +maturin build --release --target i686-unknown-linux-gnu --compatibility manylinux2014 --auditwheel repair --find-interpreter --zig --quiet +maturin build --release --target x86_64-unknown-linux-gnu --compatibility manylinux2014 --auditwheel repair --find-interpreter --zig --quiet + +### macOS +# - aarch64-apple-darwin +# - x86_64-apple-darwin +# Add Rust targets +rustup target add aarch64-apple-darwin x86_64-apple-darwin +# Build wheels +maturin build --release --target aarch64-apple-darwin --compatibility manylinux2014 --auditwheel repair --find-interpreter --zig --quiet +maturin build --release --target x86_64-apple-darwin --compatibility manylinux2014 --auditwheel repair --find-interpreter --zig --quiet + +### Windows +# - x86_64-pc-windows-msvc +# Add Rust target +rustup target add x86_64-pc-windows-msvc +# Install LLVM for llvm-dlltool +sudo apt install llvm -y +# Force use of cargo-xwin for building +export MATURIN_USE_XWIN=1 +# Build wheels +maturin build --release --target x86_64-pc-windows-msvc --compatibility manylinux2014 --auditwheel repair --find-interpreter --quiet