]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #53973 - tromey:prefer-rust-enabled-lldb, r=alexcrichton
authorkennytm <kennytm@gmail.com>
Sat, 8 Sep 2018 08:07:40 +0000 (16:07 +0800)
committerkennytm <kennytm@gmail.com>
Sat, 8 Sep 2018 10:26:37 +0000 (18:26 +0800)
commit5cc51add43bffa21bab4708a53a1920c9671ea8a
tree70c145d295d375a64305ce0fc555f0dd9be46421
parentdbc9ec9da8da4deae0d3520c3b7befd124b9cb18
parent8aae6ca44a1bea64e2be3f2ce5a4581bb65d43ef
Rollup merge of #53973 - tromey:prefer-rust-enabled-lldb, r=alexcrichton

Have rust-lldb look for the rust-enabled lldb

We're shipping a rust-enabled lldb, but the "lldb" executable is not
installed into the "bin" directory by rustup.  See the discussion in
https://github.com/rust-lang-nursery/rustup.rs/pull/1492 for
background on this decision.  There, we agreed to have rust-lldb
prefer the rust-enabled lldb if it is installed.  This patch changes
rust-lldb to look in the sysroot and use the lldb found there, if any.

See issue #48168