You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
434 B

# hwloc: Portable Hardware Locality Library
licenses(["notice"])
config_setting(
name = "with_numa_support",
define_values = {"with_numa_support": "true"},
)
filegroup(
name = "COPYING",
visibility = ["//visibility:public"],
)
cc_library(
name = "hwloc",
linkopts = select({
":with_numa_support": ["-lhwloc"],
"//conditions:default": [],
}),
visibility = ["//visibility:public"],
)