diff options
author | Andreas Schuh <andreas.schuh.84@gmail.com> | 2016-11-25 09:10:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-25 09:10:09 +0000 |
commit | 86d67a3f49bbb88fb15761079f8bc1ff146e490d (patch) | |
tree | bea2f3cc0eb391eb94cf2960e231846466bc0250 | |
parent | c94a60e2f6157085610c274bc26be74745e778b2 (diff) | |
download | gflags-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-- | BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -40,6 +40,7 @@ cc_library( includes = [ "include", ], + linkopts = ["-lpthread"], visibility = ["//visibility:public"], ) |