diff options
author | Manuel Binna <manuel@binna.de> | 2021-06-25 04:35:18 (GMT) |
---|---|---|
committer | Manuel Binna <manuel@binna.de> | 2021-06-26 11:26:20 (GMT) |
commit | 4281d2149c4ff791ff346778558a9d606554982d (patch) | |
tree | 8b95c4bb4e81760445c7bef1f8e1990ee60bf682 /googletest/test | |
parent | 355d57d90d9744c41ac7c99f1e960778f1c63040 (diff) | |
download | googletest-4281d2149c4ff791ff346778558a9d606554982d.zip googletest-4281d2149c4ff791ff346778558a9d606554982d.tar.gz googletest-4281d2149c4ff791ff346778558a9d606554982d.tar.bz2 |
Don't link pthread on QNXrefs/pull/3465/head
On QNX, pthread is part of libc [1]. There's no separate pthread library
to link.
[1] https://www.qnx.com/developers/docs/7.1/index.html#com.qnx.doc.neutrino.lib_ref/topic/p/pthread_create.html
Diffstat (limited to 'googletest/test')
-rw-r--r-- | googletest/test/BUILD.bazel | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/googletest/test/BUILD.bazel b/googletest/test/BUILD.bazel index b06a00a..7b78555 100644 --- a/googletest/test/BUILD.bazel +++ b/googletest/test/BUILD.bazel @@ -95,6 +95,7 @@ cc_test( "googletest/test", ], linkopts = select({ + "//:qnx": [], "//:windows": [], "//conditions:default": ["-pthread"], }), |