aboutsummaryrefslogtreecommitdiff
path: root/flags.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'flags.bzl')
-rw-r--r--flags.bzl7
1 files changed, 3 insertions, 4 deletions
diff --git a/flags.bzl b/flags.bzl
index 16dba2d..e35fe9e 100644
--- a/flags.bzl
+++ b/flags.bzl
@@ -3,10 +3,9 @@ LIB_COPTS = []
LIB_LINKOPTS = select({
":android": [],
+ ":windows": [],
"//conditions:default": ["-lpthread"],
})
-BIN_LINKOPTS = select({
- ":android": [],
- "//conditions:default": ["-lpthread"],
-})
+BIN_LINKOPTS = LIB_LINKOPTS
+