-
Notifications
You must be signed in to change notification settings - Fork 232
Missing symbols on aarch64-unknown-linux-gnu #428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
richkadel
added a commit
to richkadel/compiler-builtins
that referenced
this issue
Jul 14, 2021
Expands the support added in rust-lang#377 from just musl to any linux. Fixes rust-lang#428
richkadel
added a commit
to richkadel/compiler-builtins
that referenced
this issue
Jul 14, 2021
Expands the support added in rust-lang#377 from just musl to any linux. Fixes rust-lang#428
richkadel
added a commit
to richkadel/compiler-builtins
that referenced
this issue
Jul 14, 2021
Expands the support added in rust-lang#377 from just musl to any linux. Fixes rust-lang#428
richkadel
added a commit
to richkadel/compiler-builtins
that referenced
this issue
Jul 14, 2021
Expands the support added in rust-lang#377 from just musl to any linux. Also checks for and avoids adding duplicate sources. Fixes rust-lang#428
Confirming that #429 did fix the linker error demonstrated in the issue description. Woohoo! |
vladimir-ea
pushed a commit
to vladimir-ea/compiler-builtins
that referenced
this issue
Mar 8, 2022
Expands the support added in rust-lang#377 from just musl to any linux. Also checks for and avoids adding duplicate sources. Fixes rust-lang#428
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cargo
fails to link, underclang++
on aarch64 linux, due to a recent change to acargo
dependency (curl
library) that introduced the rare (but legal) use oflong double
, and exposed missing symbols (functions required for soft floating point arithmetic on this type).#377 had already addressed a similar need, but only for
musl
.Here is the error from a rustc
./x.py install
configured to useclang++
for linking (used to leverage clang's default options and artifact locations).The text was updated successfully, but these errors were encountered: