[llvm] [Bazel] Make LLVM and Clang config headers configurable (PR #126729)
Aaron Siddhartha Mondal via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 14 05:02:33 PST 2025
================
@@ -86,12 +86,15 @@ def main(args):
os.path.join(args.overlay, relpath), os.path.join(args.target, relpath)
)
- for src_entry in os.listdir(os.path.join(args.src, rel_root)):
- if src_entry not in dirs:
- relpath = os.path.join(rel_root, src_entry)
- _symlink_abs(
- os.path.join(args.src, relpath), os.path.join(args.target, relpath)
- )
+ src_path = os.path.join(args.src, rel_root)
----------------
aaronmondal wrote:
Fixed the bug that caused CI issues (https://github.com/llvm/llvm-project/commit/55ae118db7c36fb88994e072e424cb66d1f34e74). No need to pull this out.
https://github.com/llvm/llvm-project/pull/126729
More information about the llvm-commits
mailing list