mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
BUILD,gflags.bzl: Fix android linking
Android is a special case where there is no libpthread.so to link against, although the symbols are present in the standard libaries.
Linking against libpthread.so therefore causes an error.
This fix uses the config method based on android toolchain that protobuf uses, which also omits -lpthread for linkopts.
d16bf914bc/BUILD (L103)
This commit is contained in:
parent
0779d79c0a
commit
59fb6443a8
2 changed files with 6 additions and 0 deletions
5
BUILD
5
BUILD
|
@ -14,6 +14,11 @@ config_setting(
|
|||
values = {"cpu": "x64_windows"},
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "android",
|
||||
values = {"crosstool_top": "//external:android/crosstool"},
|
||||
)
|
||||
|
||||
load(":bazel/gflags.bzl", "gflags_library", "gflags_sources")
|
||||
|
||||
(hdrs, srcs) = gflags_sources(namespace = [
|
||||
|
|
|
@ -90,6 +90,7 @@ def gflags_library(hdrs = [], srcs = [], threads = 1):
|
|||
linkopts = []
|
||||
if threads:
|
||||
linkopts += select({
|
||||
"//:android": [],
|
||||
"//:x64_windows": [],
|
||||
"//conditions:default": ["-lpthread"],
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue