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.
pyc
mesonbuild
1 parent ad501b8 commit f3d072dCopy full SHA for f3d072d
toolchains/built_toolchains.bzl
@@ -20,7 +20,9 @@ exports_files(["meson.py"])
20
21
filegroup(
22
name = "runtime",
23
- srcs = glob(["mesonbuild/**"]),
+ # NOTE: excluding __pycache__ is important to avoid rebuilding due to pyc
24
+ # files, see https://github.com/bazel-contrib/rules_foreign_cc/issues/1342
25
+ srcs = glob(["mesonbuild/**"], exclude = ["**/__pycache__/*"]),
26
visibility = ["//visibility:public"],
27
)
28
"""
0 commit comments