summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schuh <andreas.schuh.84@gmail.com>2016-11-25 09:10:09 +0000
committerGitHub <noreply@github.com>2016-11-25 09:10:09 +0000
commit86d67a3f49bbb88fb15761079f8bc1ff146e490d (patch)
treebea2f3cc0eb391eb94cf2960e231846466bc0250
parentc94a60e2f6157085610c274bc26be74745e778b2 (diff)
downloadgflags-86d67a3f49bbb88fb15761079f8bc1ff146e490d.tar.gz
gflags-86d67a3f49bbb88fb15761079f8bc1ff146e490d.tar.bz2
gflags-86d67a3f49bbb88fb15761079f8bc1ff146e490d.zip
fix: Add -lpthread to link Bazel BUILD options (#189)
* fix: Add -pthread link option to Bazel BUILD file * fix: Use -lpthread instead of -pthread
-rw-r--r--BUILD1
1 files changed, 1 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index c9dc00d..cf85354 100644
--- a/BUILD
+++ b/BUILD
@@ -40,6 +40,7 @@ cc_library(
includes = [
"include",
],
+ linkopts = ["-lpthread"],
visibility = ["//visibility:public"],
)