Link -lregex on QNX

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
This commit is contained in:
Manuel Binna 2021-07-07 19:14:58 +02:00
parent 4ec4cd23f4
commit f0ff512b75

View File

@ -110,7 +110,7 @@ cc_library(
"googletest/include",
],
linkopts = select({
":qnx": [],
":qnx": ["-lregex"],
":windows": [],
"//conditions:default": ["-pthread"],
}),