From 3d31f77b752a95c1e4186582dcaf39a21301c5a9 Mon Sep 17 00:00:00 2001 From: Totto16 Date: Thu, 19 Oct 2023 00:57:30 +0200 Subject: [PATCH] fix linking with curl error --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 Makefile diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 index 78fc4c3..d659bf7 --- a/Makefile +++ b/Makefile @@ -64,7 +64,7 @@ $(DownloadManager): LDFLAGS += -pthread endif $(DownloadManager): $(DM_OBJECTS) @printf "\e[1;32m LINK\e[m $@\n" - @$(CXX) $(LDFLAGS) -o $@ $^ + @$(CXX) $(LDFLAGS) -o $@ $^ -lcurl $(PreciseTimer): $(PT_OBJECTS) @printf "\e[1;32m LINK\e[m $@\n"