fix: Add -lpthread to link Bazel BUILD options (#189)

* fix: Add -pthread link option to Bazel BUILD file
* fix: Use -lpthread instead of -pthread
This commit is contained in:
Andreas Schuh 2016-11-25 09:10:09 +00:00 committed by GitHub
parent c94a60e2f6
commit 86d67a3f49

1
BUILD
View file

@ -40,6 +40,7 @@ cc_library(
includes = [
"include",
],
linkopts = ["-lpthread"],
visibility = ["//visibility:public"],
)