ci: add -lpthread on FreeBSD's makefile

pull/12012/head
Delyan Angelov 2021-09-28 11:42:14 +03:00
parent d31c9250d3
commit 975550f912
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ VFLAGS ?=
all:
rm -rf vc/
git clone --depth 1 --quiet https://github.com/vlang/vc
$(CC) -std=gnu11 -w -I ./thirdparty/stdatomic/nix -o v1 vc/v.c -lm -lexecinfo
$(CC) -std=gnu11 -w -I ./thirdparty/stdatomic/nix -o v1 vc/v.c -lm -lexecinfo -lpthread
./v1 -no-parallel -o v2 $(VFLAGS) cmd/v
./v2 -o v $(VFLAGS) cmd/v
rm -rf v1 v2 vc/