xref: /aosp_15_r20/external/gemmlowp/flags.bzl (revision 5f39d1b313f0528e11bae88b3029b54b9e1033e7)
1# Android builds do not need to link in a separate pthread library.
2LIB_COPTS = []
3
4LIB_LINKOPTS = select({
5    ":android": [],
6    ":windows": [],
7    "//conditions:default": ["-lpthread"],
8})
9
10BIN_LINKOPTS = LIB_LINKOPTS
11
12