[llvm] [Bazel] Make LLVM and Clang config headers configurable (PR #126729)
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 15 14:03:24 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)
----------------
MaskRay wrote:
You might want to write some comments since this is getting complex
https://github.com/llvm/llvm-project/pull/126729
More information about the llvm-commits
mailing list