From 6d421723a471c661880813a1d3a49c383073f580 Mon Sep 17 00:00:00 2001 From: Hugo Yuan <429632952@163.com> Date: Sun, 15 May 2022 00:15:57 +0800 Subject: [PATCH] fix compile error on other platforms --- dump1090/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump1090/Makefile b/dump1090/Makefile index 764a745..b32cd77 100644 --- a/dump1090/Makefile +++ b/dump1090/Makefile @@ -9,7 +9,7 @@ all: dump1090 $(CC) $(CFLAGS) -c $< dump1090: dump1090.o anet.o - $(CC) -g -o dump1090 dump1090.o anet.o /usr/lib/arm-linux-gnueabihf/librtlsdr.so -L -lrtlsdr -lpthread -lm $(LDFLAGS) $(LDLIBS) + $(CC) -g -pthread -o dump1090 dump1090.o anet.o $(LDFLAGS) $(LDLIBS) clean: rm -f *.o dump1090