aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAiden Grossman <agrossman154@yahoo.com>2023-11-26 00:28:02 -0800
committerAiden Grossman <agrossman154@yahoo.com>2023-11-26 00:28:02 -0800
commit1449b349ac4072adb1f593234c1d6f67986d3b6a (patch)
tree303e98af4d25a5e50f1a12c5f12c4c7171c927c6 /utils
parentf4834255d30d695fb89c4b566d65917a8e505ca2 (diff)
downloadllvm-1449b349ac4072adb1f593234c1d6f67986d3b6a.zip
llvm-1449b349ac4072adb1f593234c1d6f67986d3b6a.tar.gz
llvm-1449b349ac4072adb1f593234c1d6f67986d3b6a.tar.bz2
[Bazel] Fix llvm-exegesis build post 12b0ab2
12b0ab2 switched llvm-exegesis from using MCJIT to OrcJIT, which is a different dep/library. This was ported over in the CMake build, but not in the bazel build. This patch adjusts the llvm-exegesis deps in the Bazel build to account for this change.
Diffstat (limited to 'utils')
-rw-r--r--utils/bazel/llvm-project-overlay/llvm/BUILD.bazel2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
index df6a2e6..d3c74437 100644
--- a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
@@ -3117,7 +3117,7 @@ cc_library(
":MC",
":MCA",
":MCDisassembler",
- ":MCJIT",
+ ":OrcJIT",
":Object",
":ObjectYAML",
":Support",