We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
cargo build --out-dir Drive/EFI/BOOT/ --release Compiling bootx v0.1.0 (/Users/visual/Developer/BootX) error: linking with rust-lld failed: exit status: 1 | = note: "rust-lld" "-flavor" "link" "/NOLOGO" "/entry:efi_main" "/subsystem:efi_application" "/var/folders/8t/31hks2hx4vvdczdjxfvcp_qc0000gn/T/rustc6KmMXf/symbols.o" "/Users/visual/Developer/BootX/target/x86_64-unknown-uefi/release/deps/bootx64-dfc09ef20fcfbd31.bootx64.1834cb91-cgu.1.rcgu.o" "/LIBPATH:/Users/visual/Developer/BootX/target/x86_64-unknown-uefi/release/deps" "/LIBPATH:/Users/visual/Developer/BootX/target/release/deps" "/LIBPATH:/Users/visual/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/x86_64-unknown-uefi/lib" "/Users/visual/Developer/BootX/target/x86_64-unknown-uefi/release/deps/libcompiler_builtins-37f27dc4bb82ca69.rlib" "/NXCOMPAT" "/LIBPATH:/Users/visual/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/x86_64-unknown-uefi/lib" "/OUT:/Users/visual/Developer/BootX/target/x86_64-unknown-uefi/release/deps/bootx64-dfc09ef20fcfbd31.efi" "/OPT:REF,ICF" "/DEBUG" "/NODEFAULTLIB" = note: rust-lld: error: undefined symbol: _fltused >>> referenced by libcompiler_builtins-37f27dc4bb82ca69.rlib(compiler_builtins-37f27dc4bb82ca69.compiler_builtins.9da5cbd1-cgu.13.rcgu.o) >>> referenced by libcompiler_builtins-37f27dc4bb82ca69.rlib(compiler_builtins-37f27dc4bb82ca69.compiler_builtins.9da5cbd1-cgu.8.rcgu.o) >>> referenced by libcompiler_builtins-37f27dc4bb82ca69.rlib(compiler_builtins-37f27dc4bb82ca69.compiler_builtins.9da5cbd1-cgu.2.rcgu.o)
rust-lld
error: could not compile bootx due to previous error
bootx
The text was updated successfully, but these errors were encountered:
I used cargo bisect-rustc to find where this regressed: rust-lang/rust@ceeb5ad
cargo bisect-rustc
There is already a revert PR for that change here: rust-lang/rust#99674
So hopefully this issue will be resolved once the revert goes through :)
Sorry, something went wrong.
Seems to be fixed in latest nightly due to rust-lang/rust#99676.
Sounds like we can close this then.
Merge pull request rust-lang#479 from tgross35/cargo-profile-updates
8660ace
Rework the available Cargo profiles
No branches or pull requests
cargo build --out-dir Drive/EFI/BOOT/ --release
Compiling bootx v0.1.0 (/Users/visual/Developer/BootX)
error: linking with
rust-lld
failed: exit status: 1|
= note: "rust-lld" "-flavor" "link" "/NOLOGO" "/entry:efi_main" "/subsystem:efi_application" "/var/folders/8t/31hks2hx4vvdczdjxfvcp_qc0000gn/T/rustc6KmMXf/symbols.o" "/Users/visual/Developer/BootX/target/x86_64-unknown-uefi/release/deps/bootx64-dfc09ef20fcfbd31.bootx64.1834cb91-cgu.1.rcgu.o" "/LIBPATH:/Users/visual/Developer/BootX/target/x86_64-unknown-uefi/release/deps" "/LIBPATH:/Users/visual/Developer/BootX/target/release/deps" "/LIBPATH:/Users/visual/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/x86_64-unknown-uefi/lib" "/Users/visual/Developer/BootX/target/x86_64-unknown-uefi/release/deps/libcompiler_builtins-37f27dc4bb82ca69.rlib" "/NXCOMPAT" "/LIBPATH:/Users/visual/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/x86_64-unknown-uefi/lib" "/OUT:/Users/visual/Developer/BootX/target/x86_64-unknown-uefi/release/deps/bootx64-dfc09ef20fcfbd31.efi" "/OPT:REF,ICF" "/DEBUG" "/NODEFAULTLIB"
= note: rust-lld: error: undefined symbol: _fltused
>>> referenced by libcompiler_builtins-37f27dc4bb82ca69.rlib(compiler_builtins-37f27dc4bb82ca69.compiler_builtins.9da5cbd1-cgu.13.rcgu.o)
>>> referenced by libcompiler_builtins-37f27dc4bb82ca69.rlib(compiler_builtins-37f27dc4bb82ca69.compiler_builtins.9da5cbd1-cgu.8.rcgu.o)
>>> referenced by libcompiler_builtins-37f27dc4bb82ca69.rlib(compiler_builtins-37f27dc4bb82ca69.compiler_builtins.9da5cbd1-cgu.2.rcgu.o)
error: could not compile
bootx
due to previous errorThe text was updated successfully, but these errors were encountered: