Changeset View
Changeset View
Standalone View
Standalone View
games/anki/files/patch-platforms_BUILD.bazel
At the moment only the "amd64" architecture is defined here but it should be | Add an generic entry for all FreeBSD architectures. | ||||
possible to add more architectures here. | |||||
--- platforms/BUILD.bazel.orig 2021-01-08 07:47:26 UTC | --- platforms/BUILD.bazel.orig 2022-06-24 05:10:06 UTC | ||||
+++ platforms/BUILD.bazel | +++ platforms/BUILD.bazel | ||||
@@ -23,3 +23,11 @@ config_setting( | @@ -33,6 +33,13 @@ config_setting( | ||||
"@platforms//cpu:x86_64", | |||||
], | |||||
) | ) | ||||
+ | |||||
+config_setting( | config_setting( | ||||
+ name = "freebsd_x86_64", | + name = "freebsd_all", | ||||
+ constraint_values = [ | + constraint_values = [ | ||||
+ "@platforms//os:freebsd", | + "@platforms//os:freebsd", | ||||
+ "@platforms//cpu:x86_64", | |||||
+ ], | + ], | ||||
+) | +) | ||||
+ | |||||
+config_setting( | |||||
name = "linux_arm64", | |||||
constraint_values = [ | |||||
"@platforms//os:linux", |