From 2a754c19e4e3c814af9db195662d1b03d092bda6 Mon Sep 17 00:00:00 2001 From: yzc Date: Tue, 31 Dec 2019 11:23:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- http_check/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http_check/Makefile b/http_check/Makefile index 33e63d9..2ae5792 100644 --- a/http_check/Makefile +++ b/http_check/Makefile @@ -1,7 +1,7 @@ all: - gcc -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson + gcc -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson -lpthread debug: - gcc -g -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson + gcc -g -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson -lpthread clean: rm *.so *.o -rf