mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
Adds -lm linker flag for FreeBSD/OpenBSD and uses github.com/bazelbuil… (#1032)
* Adds -lm linker flag for (Free|Open)BSD and uses github.com/bazelbuild/platforms for platform detection. * Prefer selects.with_or to select the linkopts. * @platforms appears to be implicitly available. @bazel_skylib would require updating every dependent repository. * Re-enable platforms package.
This commit is contained in:
parent
01c0ab7cbb
commit
4475ff6b8a
33
BUILD.bazel
33
BUILD.bazel
@ -1,14 +1,35 @@
|
|||||||
|
load("@rules_cc//cc:defs.bzl", "cc_library")
|
||||||
|
|
||||||
licenses(["notice"])
|
licenses(["notice"])
|
||||||
|
|
||||||
config_setting(
|
config_setting(
|
||||||
name = "windows",
|
name = "freebsd",
|
||||||
values = {
|
constraint_values = [
|
||||||
"cpu": "x64_windows",
|
"@platforms//os:freebsd",
|
||||||
},
|
],
|
||||||
visibility = [":__subpackages__"],
|
visibility = [":__subpackages__"],
|
||||||
)
|
)
|
||||||
|
|
||||||
load("@rules_cc//cc:defs.bzl", "cc_library")
|
config_setting(
|
||||||
|
name = "openbsd",
|
||||||
|
constraint_values = [
|
||||||
|
"@platforms//os:openbsd",
|
||||||
|
],
|
||||||
|
visibility = [":__subpackages__"],
|
||||||
|
)
|
||||||
|
|
||||||
|
config_setting(
|
||||||
|
name = "windows",
|
||||||
|
constraint_values = [
|
||||||
|
"@platforms//os:windows",
|
||||||
|
],
|
||||||
|
visibility = [":__subpackages__"],
|
||||||
|
)
|
||||||
|
|
||||||
|
BSD_LINKOPTS = [
|
||||||
|
"-pthread",
|
||||||
|
"-lm",
|
||||||
|
]
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "benchmark",
|
name = "benchmark",
|
||||||
@ -22,6 +43,8 @@ cc_library(
|
|||||||
hdrs = ["include/benchmark/benchmark.h"],
|
hdrs = ["include/benchmark/benchmark.h"],
|
||||||
linkopts = select({
|
linkopts = select({
|
||||||
":windows": ["-DEFAULTLIB:shlwapi.lib"],
|
":windows": ["-DEFAULTLIB:shlwapi.lib"],
|
||||||
|
":freebsd": BSD_LINKOPTS,
|
||||||
|
":openbsd": BSD_LINKOPTS,
|
||||||
"//conditions:default": ["-pthread"],
|
"//conditions:default": ["-pthread"],
|
||||||
}),
|
}),
|
||||||
strip_include_prefix = "include",
|
strip_include_prefix = "include",
|
||||||
|
@ -35,3 +35,8 @@ new_local_repository(
|
|||||||
path = "/usr/include/python3.6", # May be overwritten by setup.py.
|
path = "/usr/include/python3.6", # May be overwritten by setup.py.
|
||||||
)
|
)
|
||||||
|
|
||||||
|
http_archive(
|
||||||
|
name = "platforms",
|
||||||
|
strip_prefix = "platforms-master",
|
||||||
|
urls = ["https://github.com/bazelbuild/platforms/archive/master.zip"],
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user