Skip to content

Commit b8e4e54

Browse files
Rollup merge of rust-lang#53452 - tromey:lldb-manifest-fix, r=alexcrichton
Change target triple used to check for lldb in build-manifest The wrong target triple was used for lldb in build-manifest. lldb is only built for macOS, so update the triple to reflect that. This is an attempt to fix bug#48168.
2 parents 656ebf6 + c37787e commit b8e4e54

File tree

1 file changed

+2
-1
lines changed
  • src/tools/build-manifest/src

1 file changed

+2
-1
lines changed

src/tools/build-manifest/src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,8 @@ impl Builder {
273273
self.clippy_version = self.version("clippy", "x86_64-unknown-linux-gnu");
274274
self.rustfmt_version = self.version("rustfmt", "x86_64-unknown-linux-gnu");
275275
self.llvm_tools_version = self.version("llvm-tools", "x86_64-unknown-linux-gnu");
276-
self.lldb_version = self.version("lldb", "x86_64-unknown-linux-gnu");
276+
// lldb is only built for macOS.
277+
self.lldb_version = self.version("lldb", "x86_64-apple-darwin");
277278

278279
self.rust_git_commit_hash = self.git_commit_hash("rust", "x86_64-unknown-linux-gnu");
279280
self.cargo_git_commit_hash = self.git_commit_hash("cargo", "x86_64-unknown-linux-gnu");

0 commit comments

Comments
 (0)