From 3242c92bcc1d1ee2df1d050168b5973ee28a9494 Mon Sep 17 00:00:00 2001 From: Pepper Gray Date: Sun, 19 Oct 2025 00:35:06 +0200 Subject: [PATCH] replace hard coded dependency on gcc fix: #433 Signed-off-by: Pepper Gray --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cff066e05..ca043fc50 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ debug: $(LIBRARY_DEBUG_$(OS)) libkrun.pc ifeq ($(BUILD_INIT),1) INIT_BINARY = init/init $(INIT_BINARY): $(INIT_SRC) - gcc -O2 -static -Wall $(INIT_DEFS) -o $@ $(INIT_SRC) $(INIT_DEFS) + $(CC) -O2 -static -Wall $(INIT_DEFS) -o $@ $(INIT_SRC) $(INIT_DEFS) endif $(LIBRARY_RELEASE_$(OS)): $(INIT_BINARY)