23 lines
434 B
Plaintext
23 lines
434 B
Plaintext
# 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"],
|
|
)
|