Files
Android11/external/gemmlowp/flags.bzl
2023-10-13 14:01:41 +00:00

13 lines
265 B
Python

# Android builds do not need to link in a separate pthread library.
LIB_COPTS = []
LIB_LINKOPTS = select({
":android": [],
"//conditions:default": ["-lpthread"],
})
BIN_LINKOPTS = select({
":android": [],
"//conditions:default": ["-lpthread"],
})