mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-27 05:10:43 +00:00
Makefile: use -pthread instead of -lpthread
The latter does not work on android.
This commit is contained in:
parent
1000609a2c
commit
71c8a60fee
2
Makefile
2
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
|
||||
|
Loading…
Reference in New Issue
Block a user