From 7d1a395c8b568e3692f6c4235b40e6c09d1780cc Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Tue, 19 Aug 2025 19:31:25 +0200 Subject: make release: Add x86_64-linux-gnu target. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 1279cf2..9d9ebea 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -24,7 +24,7 @@ run: ## Compile and run program in debug mode @$(ZIG) build run release: ## Compile program in release mode - @for target in aarch64-linux-gnu aarch64-macos-none arm-linux-gnueabihf x86_64-linux-gnux32 x86_64-windows; do \ + @for target in aarch64-linux-gnu aarch64-macos-none arm-linux-gnueabihf x86_64-linux-gnu x86_64-linux-gnux32 x86_64-windows; do \ echo "[ZIG] zig-release/$${target}"; \ $(ZIG) build -p zig-release/$${target} -Dtarget=$${target} --release=small; \ done -- cgit v1.2.1