We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e3e059 commit 9a0c2c8Copy full SHA for 9a0c2c8
BUILD.bazel
@@ -209,6 +209,10 @@ meson_with_requirements(
209
requirements = [
210
requirement("pyelftools"),
211
],
212
+ target_compatible_with = select({
213
+ "@platforms//os:linux": [],
214
+ "//conditions:default": ["@platforms//:incompatible"],
215
+ }),
216
visibility = ["//visibility:public"],
217
deps = [
218
"@libnuma",
MODULE.bazel
@@ -3,6 +3,7 @@ module(
3
repo_name = "dpdk",
4
)
5
6
+bazel_dep(name = "platforms", version = "1.0.0")
7
bazel_dep(name = "rules_foreign_cc", version = "0.15.1")
8
bazel_dep(name = "rules_python", version = "1.6.3")
9
bazel_dep(name = "openssl", version = "3.3.1.bcr.7")
0 commit comments