From ccb38c5641ba2cba102df6c5b87d26ddddc58f2e Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sun, 14 Nov 2021 15:57:12 +0100 Subject: [PATCH] Fix targets for release building --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 143c6bc..b9ea812 100644 --- a/Makefile +++ b/Makefile @@ -61,12 +61,12 @@ x86_64-binary: x86_64-binary-release x86_64-binary-release: cross build --target x86_64-unknown-linux-musl --release --all-targets --features vendored-openssl -arm-binary: arm-binary-release +armv7-binary: armv7-binary-release -arm-binary-release: +armv7-binary-release: cross build --target=armv7-unknown-linux-musleabihf --release --all-targets --features vendored-openssl -arm-binary-debug: +armv7-binary-debug: cross build --target=armv7-unknown-linux-musleabihf --all-targets --features vendored-openssl # Hack to workaround https://github.com/rust-embedded/cross/issues/598