From 71c8a60fee3cd389849444d84fe95fa0d90f0d57 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 25 Jan 2016 11:04:49 +0100 Subject: Makefile: use -pthread instead of -lpthread The latter does not work on android. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f9f3da911..85f1ae44f 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ all: manager fuzzer executor all-tools: execprog mutate prog2c stress repro upgrade executor: - $(CC) -o ./bin/syz-executor executor/executor.cc -lpthread -Wall -O1 -g $(STATIC_FLAG) $(CFLAGS) + $(CC) -o ./bin/syz-executor executor/executor.cc -pthread -Wall -O1 -g $(STATIC_FLAG) $(CFLAGS) manager: go build -o ./bin/syz-manager github.com/google/syzkaller/syz-manager -- cgit mrf-deployment