summaryrefslogtreecommitdiffstats
path: root/BUILD.bazel
diff options
context:
space:
mode:
authorManuel Binna <manuel@binna.de>2021-07-07 17:14:58 (GMT)
committerManuel Binna <manuel@binna.de>2021-07-07 17:14:58 (GMT)
commitf0ff512b7585ff566b25c1d7c92e0065b4bca036 (patch)
tree830715f96eb67044faf8a56cd4f077f36e7f25cb /BUILD.bazel
parent4ec4cd23f486bf70efcc5d2caa40f24368f752e3 (diff)
downloadgoogletest-f0ff512b7585ff566b25c1d7c92e0065b4bca036.zip
googletest-f0ff512b7585ff566b25c1d7c92e0065b4bca036.tar.gz
googletest-f0ff512b7585ff566b25c1d7c92e0065b4bca036.tar.bz2
Link -lregex on QNXrefs/pull/3484/head
According to the 2nd point on [1], -lregex is required on QNX. [1] https://www.qnx.com/developers/docs/7.1/#com.qnx.doc.ide.userguide/topic/writing_test_programs.html
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel2
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 3c9a228..153a348 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -110,7 +110,7 @@ cc_library(
"googletest/include",
],
linkopts = select({
- ":qnx": [],
+ ":qnx": ["-lregex"],
":windows": [],
"//conditions:default": ["-pthread"],
}),