use musl-gcc
[rrq/overlay-boot.git] / src / Makefile
index 7567e7b84d920198faeb146e5dbf23697e2dfedc..1776491e09b6c4ecf32b358a4b693efefb635e2c 100644 (file)
@@ -1,13 +1,16 @@
 all: reaper
 
 # Pick compiler by preference
-CCPREFS = /usr/bin/musl-gcc /usr/bin/gcc
-CC = $(word 1,$(shell ls $(CCPREFS) 2>/dev/null))
+#CC = /usr/bin/gcc
+CC = /usr/bin/musl-gcc
+
+$(warning CC=$(CC))
 
 CFLAGS = -Wall -static -O3 -flto
 
 reaper: reaper.c
        $(CC) $(CFLAGS) -o $@ $^
+       strip $@
 
 clean:
        rm -f reaper