From 8efea340e66bc91efbe31b618a446f821c214bbf Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Tue, 8 Jan 2019 20:42:58 +0100 Subject: [PATCH] Add zlib to HttpServer build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7ef328b..2dce900 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ examples: # HttpServer (currently quire broken, mind you) clang -flto -O3 -c -IuSockets/src uSockets/src/*.c uSockets/src/eventing/*.c clang++ -flto -O3 -c -std=c++17 -Isrc -IuSockets/src examples/HttpServer.cpp - clang++ -flto -O3 -s *.o -o HttpServer -lssl -lcrypto -lpthread -lstdc++fs + clang++ -flto -O3 -s *.o -o HttpServer -lssl -lz -lcrypto -lpthread -lstdc++fs rm *.o # I don't know what this is supposed to do