mirror of
https://github.com/google/googletest.git
synced 2025-04-05 13:35:03 +00:00
Fix linker errors on FreeBSD.
This commit is contained in:
parent
075810f7a2
commit
9e3fb4ea94
1 changed files with 12 additions and 0 deletions
12
BUILD.bazel
12
BUILD.bazel
|
@ -46,6 +46,16 @@ config_setting(
|
|||
constraint_values = ["@platforms//os:windows"],
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "freebsd",
|
||||
constraint_values = ["@platforms//os:freebsd"],
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "openbsd",
|
||||
constraint_values = ["@platforms//os:openbsd"],
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "msvc_compiler",
|
||||
flag_values = {
|
||||
|
@ -110,6 +120,8 @@ cc_library(
|
|||
linkopts = select({
|
||||
":qnx": ["-lregex"],
|
||||
":windows": [],
|
||||
":freebsd": ["-lm", "-pthread"],
|
||||
":openbsd": ["-lm", "-pthread"],
|
||||
"//conditions:default": ["-pthread"],
|
||||
}),
|
||||
deps = select({
|
||||
|
|
Loading…
Add table
Reference in a new issue