From 785fc6bb47b5722383721328401eb101c72e7b8b Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 22 Mar 2020 15:33:03 +0100 Subject: [PATCH] add rust target x86_64-unknown-linux-musl --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 4e4a8d2..22198a9 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ build-src: .PHONY: build-bin build-bin: rustup set profile minimal && \ + rustup target add x86_64-unknown-linux-musl && \ cd $(SRC) && \ cargo build -j 8 --features $(DB) --release