File: flags.bzl

package info (click to toggle)
gemmlowp 0.0~git20211220.e844ffd-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,752 kB
  • sloc: cpp: 113,898; ansic: 9,221; python: 3,251; sh: 79; objc: 55; makefile: 16
file content (11 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
# Android builds do not need to link in a separate pthread library.
LIB_COPTS = []

LIB_LINKOPTS = select({
    ":android": [],
    ":windows": [],
    "//conditions:default": ["-lpthread"],
})

BIN_LINKOPTS = LIB_LINKOPTS