[llvm] [bazel] Export distributable lldb files (PR #96549)
Keith Smiley via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 24 13:26:15 PDT 2024
https://github.com/keith created https://github.com/llvm/llvm-project/pull/96549
If you're building and vendoring lldb, you might need to also vendor
these files.
>From de8f122904688fc2080e642ad49928229a7a40fd Mon Sep 17 00:00:00 2001
From: Keith Smiley <keithbsmiley at gmail.com>
Date: Mon, 24 Jun 2024 18:25:08 +0000
Subject: [PATCH] [bazel] Export distributable lldb files
If you're building and vendoring lldb, you might need to also vendor
these files.
---
utils/bazel/llvm-project-overlay/llvm/BUILD.bazel | 1 +
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 1 +
2 files changed, 2 insertions(+)
diff --git a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
index cf7ee18f0d068..38970d9929b9c 100644
--- a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
@@ -31,6 +31,7 @@ exports_files([
"include/llvm/IR/Intrinsics.td",
"include/llvm/Option/OptParser.td",
"utils/lit/lit.py",
+ "utils/lldbDataFormatters.py",
])
# It may be tempting to add compiler flags here, but that should be avoided.
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index 14203eb9e7060..8818e553b5749 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -26,6 +26,7 @@ licenses(["notice"])
exports_files([
"LICENSE.TXT",
"run_lit.sh",
+ "utils/lldb-scripts/mlirDataFormatters.py",
"utils/textmate/mlir.json",
])
More information about the llvm-commits
mailing list