From 62d923604581f8ad61251fc3663d124d25f2c428 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Wed, 29 Sep 2021 12:09:52 +0200 Subject: [PATCH] aarch64-binary target --- implementations/rust/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/implementations/rust/Makefile b/implementations/rust/Makefile index ec33673..157badf 100644 --- a/implementations/rust/Makefile +++ b/implementations/rust/Makefile @@ -5,6 +5,11 @@ all: cargo build --all-targets +aarch64-binary: aarch64-binary-release + +aarch64-binary-release: + cross build --target=aarch64-unknown-linux-musl --release --all-targets + test: cargo test