Skip to content

Commit 6b57050

Browse files
authoredJul 2, 2020
Rollup merge of #73449 - ehuss:duplicate-lang-item, r=matthewjasper
Provide more information on duplicate lang item error. This gives some notes on the location of the files where the lang items were loaded from. Some duplicate lang item errors can be a little confusing, and this might help in diagnosing what has happened. Here's an example when hitting a bug with Cargo's build-std: ``` error: duplicate lang item in crate `core` (which `rustc_std_workspace_core` depends on): `try`. | = note: the lang item is first defined in crate `core` (which `z10` depends on) = note: first definition in `core` loaded from /Users/eric/Proj/rust/cargo/scratch/z10/target/target/debug/deps/libcore-a764da499c7385f4.rmeta = note: second definition in `core` loaded from /Users/eric/Proj/rust/cargo/scratch/z10/target/target/debug/deps/libcore-5b082675aea34986.rmeta ```
2 parents 8ed5c0d + 1b3ef66 commit 6b57050

File tree

10 files changed

+42
-4
lines changed

10 files changed

+42
-4
lines changed
 

‎src/librustc_metadata/rmeta/decoder/cstore_impl.rs

+2
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,8 @@ provide! { <'tcx> tcx, def_id, other, cdata,
239239

240240
syms
241241
}
242+
243+
crate_extern_paths => { cdata.source().paths().cloned().collect() }
242244
}
243245

244246
pub fn provide(providers: &mut Providers<'_>) {

‎src/librustc_middle/query/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1042,6 +1042,10 @@ rustc_queries! {
10421042
eval_always
10431043
desc { "looking up the extra filename for a crate" }
10441044
}
1045+
query crate_extern_paths(_: CrateNum) -> Vec<PathBuf> {
1046+
eval_always
1047+
desc { "looking up the paths for extern crates" }
1048+
}
10451049
}
10461050

10471051
TypeChecking {

‎src/librustc_middle/ty/query/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ use rustc_span::{Span, DUMMY_SP};
5757
use std::borrow::Cow;
5858
use std::collections::BTreeMap;
5959
use std::ops::Deref;
60+
use std::path::PathBuf;
6061
use std::sync::Arc;
6162

6263
#[macro_use]

‎src/librustc_passes/lang_items.rs

+22
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,28 @@ impl LanguageItemCollector<'tcx> {
146146
));
147147
}
148148
}
149+
let mut note_def = |which, def_id: DefId| {
150+
let crate_name = self.tcx.crate_name(def_id.krate);
151+
let note = if def_id.is_local() {
152+
format!("{} definition in the local crate (`{}`)", which, crate_name)
153+
} else {
154+
let paths: Vec<_> = self
155+
.tcx
156+
.crate_extern_paths(def_id.krate)
157+
.iter()
158+
.map(|p| p.display().to_string())
159+
.collect();
160+
format!(
161+
"{} definition in `{}` loaded from {}",
162+
which,
163+
crate_name,
164+
paths.join(", ")
165+
)
166+
};
167+
err.note(&note);
168+
};
169+
note_def("first", original_def_id);
170+
note_def("second", item_def_id);
149171
}
150172
err.emit();
151173
}

‎src/test/ui/duplicate_entry_error.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// normalize-stderr-test "loaded from .*libstd-.*.rlib" -> "loaded from SYSROOT/libstd-*.rlib"
12
// note-pattern: first defined in crate `std`.
23

34
// Test for issue #31788 and E0152

‎src/test/ui/duplicate_entry_error.stderr

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0152]: found duplicate lang item `panic_impl`
2-
--> $DIR/duplicate_entry_error.rs:10:1
2+
--> $DIR/duplicate_entry_error.rs:11:1
33
|
44
LL | / fn panic_impl(info: &PanicInfo) -> ! {
55
LL | |
@@ -8,6 +8,8 @@ LL | | }
88
| |_^
99
|
1010
= note: the lang item is first defined in crate `std` (which `duplicate_entry_error` depends on)
11+
= note: first definition in `std` loaded from SYSROOT/libstd-*.rlib
12+
= note: second definition in the local crate (`duplicate_entry_error`)
1113

1214
error: aborting due to previous error
1315

‎src/test/ui/error-codes/E0152.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// normalize-stderr-test "loaded from .*liballoc-.*.rlib" -> "loaded from SYSROOT/liballoc-*.rlib"
12
#![feature(lang_items)]
23

34
#[lang = "owned_box"]

‎src/test/ui/error-codes/E0152.stderr

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
error[E0152]: found duplicate lang item `owned_box`
2-
--> $DIR/E0152.rs:4:1
2+
--> $DIR/E0152.rs:5:1
33
|
44
LL | struct Foo;
55
| ^^^^^^^^^^^
66
|
77
= note: the lang item is first defined in crate `alloc` (which `std` depends on)
8+
= note: first definition in `alloc` loaded from SYSROOT/liballoc-*.rlib
9+
= note: second definition in the local crate (`E0152`)
810

911
error: aborting due to previous error
1012

‎src/test/ui/panic-handler/panic-handler-std.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// normalize-stderr-test "loaded from .*libstd-.*.rlib" -> "loaded from SYSROOT/libstd-*.rlib"
12
// error-pattern: found duplicate lang item `panic_impl`
23

34

‎src/test/ui/panic-handler/panic-handler-std.stderr

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
error[E0152]: found duplicate lang item `panic_impl`
2-
--> $DIR/panic-handler-std.rs:7:1
2+
--> $DIR/panic-handler-std.rs:8:1
33
|
44
LL | / fn panic(info: PanicInfo) -> ! {
55
LL | | loop {}
66
LL | | }
77
| |_^
88
|
99
= note: the lang item is first defined in crate `std` (which `panic_handler_std` depends on)
10+
= note: first definition in `std` loaded from SYSROOT/libstd-*.rlib
11+
= note: second definition in the local crate (`panic_handler_std`)
1012

1113
error: argument should be `&PanicInfo`
12-
--> $DIR/panic-handler-std.rs:7:16
14+
--> $DIR/panic-handler-std.rs:8:16
1315
|
1416
LL | fn panic(info: PanicInfo) -> ! {
1517
| ^^^^^^^^^

0 commit comments

Comments
 (0)
Please sign in to comment.