From 2b316cbc1675c8199e8763ba0aecec780142aa92 Mon Sep 17 00:00:00 2001 From: Toni Date: Tue, 11 Nov 2025 14:31:33 +0100 Subject: [PATCH] remove hardcoded musl-gcc path --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 017691c..5afe0b0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -84,7 +84,7 @@ fn compile_file(args: Args) -> Result<(), ZernError> { )); } else { run_command(format!( - "./musl-1.2.4/root/bin/musl-gcc -static -o {} {}.o -flto -Wl,--gc-sections {}", + "musl-gcc -static -o {} {}.o -flto -Wl,--gc-sections {}", args.out, args.out, args.cflags )); }