Skip to content

Commit 3242c92

Browse files
peppergrayxyzmtjhrc
authored andcommitted
replace hard coded dependency on gcc
fix: #433 Signed-off-by: Pepper Gray <[email protected]>
1 parent b571ac5 commit 3242c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ debug: $(LIBRARY_DEBUG_$(OS)) libkrun.pc
103103
ifeq ($(BUILD_INIT),1)
104104
INIT_BINARY = init/init
105105
$(INIT_BINARY): $(INIT_SRC)
106-
gcc -O2 -static -Wall $(INIT_DEFS) -o $@ $(INIT_SRC) $(INIT_DEFS)
106+
$(CC) -O2 -static -Wall $(INIT_DEFS) -o $@ $(INIT_SRC) $(INIT_DEFS)
107107
endif
108108

109109
$(LIBRARY_RELEASE_$(OS)): $(INIT_BINARY)

0 commit comments

Comments
 (0)