Link failure with 'undefined reference to [things in core/std/alloc]' between 1.37.0 and 1.41.0 #69328
Labels
A-linkage
Area: linking into static, shared libraries and binaries
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
P-medium
Medium priority
regression-from-stable-to-stable
Performance or correctness regression from one stable version to another.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Project: https://github.com/GinjaNinja32/rustbot
I'll have a go at reducing this down, but I'm not sure how successful I'll be; a previous attempt to minimise a bug-inducing case with this project resulted in a test project which successfully demonstrated the same error I was trying to replicate... on a compiler version the original code worked fine on. My project might just be cursed.
Current master (
e9fa274
) compiles fine on 1.36.0, fails with a massive (~750KB) link error on 1.37.0-1.41.0, works again on 1.42.0-beta.3 and nightly 2020-02-19Commits prior to GinjaNinja32/rustbot@c546766 compile fine on all versions tested (1.36.0 to 1.41.0 inclusive, plus mentioned beta and nightly).
The link error has a lot of undefined references, all to things involving
core
,std
, andalloc
; the 5 most common reported errors (of 168 distinct, 2658 total "undefined reference to TYPE" errors) are:279x undefined reference to
<T as core::convert::From<T>>::from
205x undefined reference to
<core::result::Result<T,E> as core::ops::try::Try>::into_result
188x undefined reference to
core::fmt::ArgumentV1::new
164x undefined reference to
<core::result::Result<T,E> as core::ops::try::Try>::from_error
117x undefined reference to
std::panicking::begin_panic
The compiler versions this happens on seem to be the same as those for which #67070 causes execution failures before
c546766
; this may be a related issue to that one.If I compile on
c546766
to get the link error, then checkout the parent commit and build again withoutcargo clean
, I get an ICE:I'm not sure if the ICE has been fixed since 1.41.0, since the only reproduction case I know of involves compiling an older commit without
cargo clean
-ing a previous failed compile on the same compiler version, and versions after 1.41.0 don't fail to compile the project.Meta
rustc --version --verbose
:The text was updated successfully, but these errors were encountered: