mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Merge #6411
6411: remove FIXME after rust 1.47 comes out r=lnicola a=qy3u Remove 'FIXME' after rust 1.47 comes out. And for compatibility with versions before 1.47, did't remove 'src'. Co-authored-by: yuqing <yuqing@ipfsforce.com>
This commit is contained in:
commit
e7c8c600b7
1 changed files with 1 additions and 6 deletions
|
@ -60,9 +60,7 @@ impl Sysroot {
|
|||
let mut sysroot = Sysroot { crates: Arena::default() };
|
||||
|
||||
for name in SYSROOT_CRATES.trim().lines() {
|
||||
// FIXME: first path when 1.47 comes out
|
||||
// https://github.com/rust-lang/rust/pull/73265
|
||||
let root = [format!("lib{}/lib.rs", name), format!("{}/src/lib.rs", name)]
|
||||
let root = [format!("{}/src/lib.rs", name), format!("lib{}/lib.rs", name)]
|
||||
.iter()
|
||||
.map(|it| sysroot_src_dir.join(it))
|
||||
.find(|it| it.exists());
|
||||
|
@ -149,9 +147,6 @@ try running `rustup component add rust-src` or set `RUST_SRC_PATH`",
|
|||
|
||||
fn get_rust_src(sysroot_path: &AbsPath) -> Option<AbsPathBuf> {
|
||||
// Try the new path first since the old one still exists.
|
||||
//
|
||||
// FIXME: remove `src` when 1.47 comes out
|
||||
// https://github.com/rust-lang/rust/pull/73265
|
||||
let rust_src = sysroot_path.join("lib/rustlib/src/rust");
|
||||
log::debug!("Checking sysroot (looking for `library` and `src` dirs): {}", rust_src.display());
|
||||
["library", "src"].iter().map(|it| rust_src.join(it)).find(|it| it.exists())
|
||||
|
|
Loading…
Reference in a new issue