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