rust icon indicating copy to clipboard operation
rust copied to clipboard

Bootstrap config: libgccjit libs dir

Open antoyo opened this issue 1 month ago • 7 comments

r? @Kobzol

antoyo avatar Nov 26 '25 14:11 antoyo

This PR changes how GCC is built. Consider updating src/bootstrap/download-ci-gcc-stamp.

This PR modifies src/bootstrap/src/core/config.

If appropriate, please update CONFIG_CHANGE_HISTORY in src/bootstrap/src/utils/change_tracker.rs.

rustbot avatar Nov 26 '25 14:11 rustbot

Kobzol is not on the review rotation at the moment. They may take a while to respond.

rustbot avatar Nov 26 '25 14:11 rustbot

@Kobzol: I'm sending this PR to gather some feedback from you or others.

How can I add tests for this new bootstrap config? Where should I document this new config?

antoyo avatar Nov 26 '25 14:11 antoyo

The job tidy failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)
fmt: checked 6570 files
tidy check
tidy [rustdoc_json (src)]: `rustdoc-json-types` modified, checking format version
tidy: Skipping binary file check, read-only filesystem
tidy [style (src)]: /checkout/src/bootstrap/src/core/build_steps/gcc.rs:212: TODO is used for tasks that should be done before merging a PR; If you want to leave a message in the codebase use FIXME
tidy [style (src)]: FAIL
tidy [alphabetical (src)]: /checkout/src/bootstrap/src/core/config/config.rs:1334: line not in alphabetical order
tidy [alphabetical (src)]: FAIL
removing old virtual environment
creating virtual environment at '/checkout/obj/build/venv' using 'python3.10' and 'venv'
creating virtual environment at '/checkout/obj/build/venv' using 'python3.10' and 'virtualenv'
Requirement already satisfied: pip in ./build/venv/lib/python3.10/site-packages (25.3)
linting python files
---
info: ES-Check: there were no ES version matching errors!  🎉
typechecking javascript files
tidy: The following checks failed: alphabetical (src), style (src)
Bootstrap failed while executing `test src/tools/tidy tidyselftest --extra-checks=py,cpp,js,spellcheck`
Command `/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-tools-bin/rust-tidy /checkout /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo /checkout/obj/build 4 /node/bin/yarn --extra-checks=py,cpp,js,spellcheck` failed with exit code 1
Created at: src/bootstrap/src/core/build_steps/tool.rs:1599:23
Executed at: src/bootstrap/src/core/build_steps/test.rs:1285:29

Command has failed. Rerun with -v to see more details.
Build completed unsuccessfully in 0:03:07
  local time: Wed Nov 26 14:13:12 UTC 2025
  network time: Wed, 26 Nov 2025 14:13:13 GMT
##[error]Process completed with exit code 1.
##[group]Run echo "disk usage:"

rust-log-analyzer avatar Nov 26 '25 14:11 rust-log-analyzer

The job pr-check-2 failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)
[RUSTC-TIMING] build_helper test:false 0.714
error: the borrowed expression implements the required traits
  --> src/bootstrap/src/core/build_steps/gcc.rs:88:43
   |
88 |                 let dst = target_dir.join(&target_filename);
   |                                           ^^^^^^^^^^^^^^^^ help: change this to: `target_filename`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
   = note: `-D clippy::needless-borrows-for-generic-args` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::needless_borrows_for_generic_args)]`

rust-log-analyzer avatar Nov 26 '25 14:11 rust-log-analyzer

:umbrella: The latest upstream changes (presumably #149348) made this pull request unmergeable. Please resolve the merge conflicts.

bors avatar Nov 28 '25 06:11 bors

I will focus on https://github.com/rust-lang/rust/pull/149426 first, as I think that we should first deal with the compiler/cg_gcc side of things, before we go modify bootstrap.

Kobzol avatar Dec 06 '25 11:12 Kobzol

:umbrella: The latest upstream changes (presumably #149426) made this pull request unmergeable. Please resolve the merge conflicts.

bors avatar Dec 09 '25 06:12 bors

I refactored the code a bit to more explicitly model that we have multiple target libgccjit dylibs per host, and also to enable both downloading from CI and using prebuilt libgccjit.so files (so that people don't also have to build their x64 libgccjit.so from scratch). Please let me know if it makes sense to you.

Kobzol avatar Dec 12 '25 11:12 Kobzol

The job x86_64-gnu-llvm-20 failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)

rust-log-analyzer avatar Dec 12 '25 11:12 rust-log-analyzer

Please let me know if it makes sense to you.

This commit makes sense to me. For the other commit, I do not understand bootstrap enough to understand what's happening here. Would that commit help keep the m68k libgccjit.so file that was deleted? Do you want me to try to cross-compile rustc locally with that commit?

antoyo avatar Dec 12 '25 12:12 antoyo

Do you want me to try to cross-compile rustc locally with that commit?

If you already have it prepared, yeah, you could try it. Although CI failed, so maybe there's something else wrong.

Kobzol avatar Dec 12 '25 12:12 Kobzol

If you already have it prepared, yeah, you could try it. Although CI failed, so maybe there's something else wrong.

Good. I try that right away.

antoyo avatar Dec 12 '25 13:12 antoyo

If you already have it prepared, yeah, you could try it. Although CI failed, so maybe there's something else wrong.

The command finished running and the issue with the m68k libgccjit.so file being deleted still seems there. Any ideas of how to fix this? Do the steps I posted above give you any hint?

antoyo avatar Dec 12 '25 13:12 antoyo

I suspect I know where is the issue. bootstrap hacks around this for LLVM, but I don't like how it is done (I want to refactor how LLVM is handled in bootstrap, as it's super messy right now, but it's very hard).

In that case, I would actually suggest to sidestep this issue entirely and use a different directory structure: <sysroot>/lib/rustlib/<host-target>/codegen-backends/lib/<target>/libgccjit.so. This I think also makes it clearer that cg_gcc is actually invoked on <host-target>, and it will use libraries from its lib subdirectory, rather than from completely different directories in <sysroot>/lib/rustlib/....

This will run into an issue with Rustup later, but we would have the exact same issue even with the current layout, so it doesn't really matter.

What do you think?

Kobzol avatar Dec 12 '25 14:12 Kobzol

The job pr-check-2 failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)
[RUSTC-TIMING] build_helper test:false 0.773
error: this expression creates a reference which is immediately dereferenced by the compiler
    --> src/bootstrap/src/core/build_steps/compile.rs:1724:44
     |
1724 |         add_cg_gcc_cargo_flags(&mut cargo, &dylib_set.host_dylib());
     |                                            ^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `dylib_set.host_dylib()`
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
     = note: `-D clippy::needless-borrow` implied by `-D warnings`
     = help: to override `-D warnings` add `#[allow(clippy::needless_borrow)]`

error: the borrowed expression implements the required traits
    --> src/bootstrap/src/core/build_steps/dist.rs:2860:26
     |
2860 |         tarball.add_file(&output.libgccjit(), "lib", FileType::NativeLibrary);
     |                          ^^^^^^^^^^^^^^^^^^^ help: change this to: `output.libgccjit()`
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
     = note: `-D clippy::needless-borrows-for-generic-args` implied by `-D warnings`
     = help: to override `-D warnings` add `#[allow(clippy::needless_borrows_for_generic_args)]`

rust-log-analyzer avatar Dec 12 '25 14:12 rust-log-analyzer

What do you think?

I'm OK with this directory structure. But since this is still in rustlib, won't that get deleted too?

antoyo avatar Dec 12 '25 14:12 antoyo

I certainly hope not :laughing: Bootstrap should only be deleting rustlib/<target>/lib, I think. If not, then I misunderstood the issue.

Kobzol avatar Dec 12 '25 14:12 Kobzol

I certainly hope not 😆 Bootstrap should only be deleting rustlib/<target>/lib, I think. If not, then I misunderstood the issue.

Ok. I'll try this new directory structure locally to see if that works. If so, I'll push it here.

antoyo avatar Dec 12 '25 14:12 antoyo

The job x86_64-gnu-gcc failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)

---- [codegen-units] tests/codegen-units/item-collection/asm-sym.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24454) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C codegen-units=1 --crate-type lib

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/asm-sym.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/asm-sym" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Ccodegen-units=1" "--crate-type=lib"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24454) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C codegen-units=1 --crate-type lib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/asm-sym.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/cross-crate-closures.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24457) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -Z inline-mir=no --crate-type dylib

query stack during panic:
end of query stack

------------------------------------------

error: auxiliary build of /checkout/tests/codegen-units/item-collection/auxiliary/cgu_extern_closures.rs failed to compile: 
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/auxiliary/cgu_extern_closures.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/cross-crate-closures/auxiliary" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Zinline-mir=no" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/cross-crate-closures/auxiliary"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24457) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -Z inline-mir=no --crate-type dylib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/cross-crate-closures.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/async-fn-impl.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24458) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type lib

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/async-fn-impl.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/async-fn-impl" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "--edition=2024" "--crate-type=lib"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24458) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type lib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/async-fn-impl.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/closures.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24455) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code --crate-type lib

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/closures.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/closures" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "--edition=2021" "-Clink-dead-code" "--crate-type=lib"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24455) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code --crate-type lib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/closures.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/cross-crate-trait-method.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24476) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0 --crate-type dylib

query stack during panic:
end of query stack

------------------------------------------

error: auxiliary build of /checkout/tests/codegen-units/item-collection/auxiliary/cgu_export_trait_method.rs failed to compile: 
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/auxiliary/cgu_export_trait_method.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/cross-crate-trait-method/auxiliary" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/cross-crate-trait-method/auxiliary"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24476) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0 --crate-type dylib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/cross-crate-trait-method.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/cross-crate-generic-functions.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24477) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type dylib

query stack during panic:
end of query stack

------------------------------------------

error: auxiliary build of /checkout/tests/codegen-units/item-collection/auxiliary/cgu_generic_function.rs failed to compile: 
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/auxiliary/cgu_generic_function.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/cross-crate-generic-functions/auxiliary" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/cross-crate-generic-functions/auxiliary"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24477) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type dylib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/cross-crate-generic-functions.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/drop-glue-eager.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24475) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code --crate-type lib

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/drop-glue-eager.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/drop-glue-eager" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "--crate-type=lib"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24475) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code --crate-type lib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/drop-glue-eager.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/drop-glue-noop.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24474) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z mir-opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/drop-glue-noop.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/drop-glue-noop" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zmir-opt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24474) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z mir-opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/drop-glue-noop.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/generic-functions.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24497) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/generic-functions.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/generic-functions" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zinline-mir=no"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24497) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/generic-functions.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/generic-drop-glue.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24495) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/generic-drop-glue.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/generic-drop-glue" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-O"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24495) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/generic-drop-glue.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/function-as-argument.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24494) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/function-as-argument.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/function-as-argument" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zinline-mir=no"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24494) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/function-as-argument.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/drop_in_place_intrinsic.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24496) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/drop_in_place_intrinsic.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/drop_in_place_intrinsic" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zinline-mir=no" "-O"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24496) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/drop_in_place_intrinsic.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/impl-in-non-instantiated-generic.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24515) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/impl-in-non-instantiated-generic.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/impl-in-non-instantiated-generic" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24515) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/impl-in-non-instantiated-generic.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/implicit-panic-call.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24516) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/implicit-panic-call.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/implicit-panic-call" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24516) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/implicit-panic-call.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/instantiation-through-vtable.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24514) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z mir-opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/instantiation-through-vtable.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/instantiation-through-vtable" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zmir-opt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24514) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z mir-opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/instantiation-through-vtable.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/generic-impl.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24517) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/generic-impl.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/generic-impl" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zinline-mir=no"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24517) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/generic-impl.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/non-generic-closures.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24534) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/non-generic-closures.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/non-generic-closures" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zinline-mir=no" "-O"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24534) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/non-generic-closures.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/non-generic-drop-glue.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24537) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/non-generic-drop-glue.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/non-generic-drop-glue" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-O"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24537) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/non-generic-drop-glue.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/non-generic-functions.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24536) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/non-generic-functions.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/non-generic-functions" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24536) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/non-generic-functions.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/items-within-generic-items.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24535) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/items-within-generic-items.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/items-within-generic-items" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24535) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/items-within-generic-items.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/statics-and-consts.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24554) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/statics-and-consts.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/statics-and-consts" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24554) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/statics-and-consts.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/static-init.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24557) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/static-init.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/static-init" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24557) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/static-init.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/overloaded-operators.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24556) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/overloaded-operators.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/overloaded-operators" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24556) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/overloaded-operators.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/opaque-return-impls.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24555) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C rpath -C debuginfo=0 -C panic=abort -Z inline-mir=no -C opt-level=0 -Z cross-crate-inline-threshold=never -Z mir-opt-level=0 -C no-prepopulate-passes

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/opaque-return-impls.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/opaque-return-impls" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "--edition=2024" "-C" "panic=abort" "-Zinline-mir=no" "-Copt-level=0" "-Zcross-crate-inline-threshold=never" "-Zmir-opt-level=0" "-Cno-prepopulate-passes"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24555) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C rpath -C debuginfo=0 -C panic=abort -Z inline-mir=no -C opt-level=0 -Z cross-crate-inline-threshold=never -Z mir-opt-level=0 -C no-prepopulate-passes

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/opaque-return-impls.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/trait-method-default-impl.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24574) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/trait-method-default-impl.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/trait-method-default-impl" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zinline-mir=no"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24574) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/trait-method-default-impl.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/trait-implementations.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24576) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/trait-implementations.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/trait-implementations" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zinline-mir=no"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24576) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/trait-implementations.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/transitive-drop-glue.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24577) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/transitive-drop-glue.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/transitive-drop-glue" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-O"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24577) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/transitive-drop-glue.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/trait-method-as-argument.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24575) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/trait-method-as-argument.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/trait-method-as-argument" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-Zinline-mir=no"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24575) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code -Z inline-mir=no

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/trait-method-as-argument.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/unreferenced-inline-function.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24597) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/unreferenced-inline-function.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/unreferenced-inline-function" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24597) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/unreferenced-inline-function.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/tuple-drop-glue.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24595) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/tuple-drop-glue.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/tuple-drop-glue" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code" "-O"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24595) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/tuple-drop-glue.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/unreferenced-const-fn.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24596) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/unreferenced-const-fn.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/unreferenced-const-fn" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24596) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/unreferenced-const-fn.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/unsizing.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24594) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -Z mir-opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/unsizing.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/unsizing" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Zmir-opt-level=0" "-O"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24594) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -Z mir-opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/unsizing.rs stdout end ----
---- [codegen-units] tests/codegen-units/item-collection/unused-traits-and-generics.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24613) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/item-collection/unused-traits-and-generics.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/item-collection/unused-traits-and-generics" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Clink-dead-code"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24613) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C link-dead-code

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/item-collection/unused-traits-and-generics.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/extern-generic.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24617) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type dylib

query stack during panic:
end of query stack

------------------------------------------

error: auxiliary build of /checkout/tests/codegen-units/partitioning/auxiliary/cgu_generic_function.rs failed to compile: 
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/auxiliary/cgu_generic_function.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/extern-generic/extern-generic.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/extern-generic/auxiliary" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/extern-generic/auxiliary"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24617) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type dylib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/extern-generic.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/incremental-merging.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24620) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0 -C codegen-units=3

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/incremental-merging.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/incremental-merging/incremental-merging.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/incremental-merging" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0" "-Ccodegen-units=3"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24620) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0 -C codegen-units=3

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/incremental-merging.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/extern-drop-glue.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24614) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type dylib

query stack during panic:
end of query stack

------------------------------------------

error: auxiliary build of /checkout/tests/codegen-units/partitioning/auxiliary/cgu_extern_drop_glue.rs failed to compile: 
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/auxiliary/cgu_extern_drop_glue.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/extern-drop-glue/extern-drop-glue.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/extern-drop-glue/auxiliary" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/extern-drop-glue/auxiliary"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24614) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type dylib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/extern-drop-glue.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/inline-always.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24637) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/inline-always.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/inline-always/inline-always.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/inline-always" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24637) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/inline-always.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/local-drop-glue.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24634) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/local-drop-glue.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/local-drop-glue/local-drop-glue.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/local-drop-glue" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24634) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/local-drop-glue.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/inlining-from-extern-crate.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24635) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type dylib

query stack during panic:
end of query stack

------------------------------------------

error: auxiliary build of /checkout/tests/codegen-units/partitioning/auxiliary/cgu_explicit_inlining.rs failed to compile: 
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/auxiliary/cgu_explicit_inlining.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/inlining-from-extern-crate/inlining-from-extern-crate.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/inlining-from-extern-crate/auxiliary" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/inlining-from-extern-crate/auxiliary"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24635) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 --crate-type dylib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/inlining-from-extern-crate.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/local-generic.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24636) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/local-generic.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/local-generic/local-generic.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/local-generic" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24636) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/local-generic.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/local-transitive-inlining.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24656) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/local-transitive-inlining.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/local-transitive-inlining/local-transitive-inlining.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/local-transitive-inlining" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24656) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/local-transitive-inlining.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/regular-modules.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24657) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/regular-modules.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/regular-modules/regular-modules.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/regular-modules" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24657) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/regular-modules.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/shared-generics.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24655) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -Z share-generics=yes -C opt-level=0 --crate-type dylib

query stack during panic:
end of query stack

------------------------------------------

error: auxiliary build of /checkout/tests/codegen-units/partitioning/auxiliary/shared_generics_aux.rs failed to compile: 
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/auxiliary/shared_generics_aux.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/shared-generics/shared-generics.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/shared-generics/auxiliary" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Zshare-generics=yes" "-Copt-level=0" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/shared-generics/auxiliary"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24655) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -Z share-generics=yes -C opt-level=0 --crate-type dylib

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/shared-generics.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/methods-are-with-self-type.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24654) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/methods-are-with-self-type.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/methods-are-with-self-type/methods-are-with-self-type.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/methods-are-with-self-type" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24654) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/methods-are-with-self-type.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/statics.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24669) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/statics.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/statics/statics.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/statics" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24669) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

---- [codegen-units] tests/codegen-units/partitioning/statics.rs stdout end ----
---- [codegen-units] tests/codegen-units/partitioning/vtable-through-const.rs stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------

thread 'rustc' (24668) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
    "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgccjit.so",
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack

------------------------------------------

error: compilation failed!
status: exit status: 101
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/codegen-units/partitioning/vtable-through-const.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "-Zcodegen-backend=gcc" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(test,FALSE)" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/vtable-through-const/vtable-through-const.inc" "-Z" "incremental-verify-ich" "-Z" "human_readable_cgu_names" "-O" "-Zprint-mono-items" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen-units/partitioning/vtable-through-const" "-A" "internal_features" "-A" "unused_parens" "-A" "unused_braces" "-Crpath" "-Cdebuginfo=0" "-Copt-level=0"
stdout: none
--- stderr -------------------------------

thread 'rustc' (24668) panicked at compiler/rustc_codegen_gcc/src/lib.rs:232:13:
Could not load libgccjit.so. Attempted paths: [
---
note: please make sure that you have updated to the latest nightly

note: rustc 1.94.0-nightly (f6b5033bb 2025-12-12) running on x86_64-unknown-linux-gnu

note: compiler flags: -Z threads=1 -Z simulate-remapped-rust-src-base=/rustc/FAKE_PREFIX -Z translate-remapped-path-to-local-path=no -Z ignore-directory-in-diagnostics-source-blocks=/cargo -Z ignore-directory-in-diagnostics-source-blocks=/checkout/vendor -Z codegen-backend=gcc -C incremental=[REDACTED] -Z incremental-verify-ich -Z human_readable_cgu_names -Z print-mono-items -C prefer-dynamic -C rpath -C debuginfo=0 -C opt-level=0

query stack during panic:
end of query stack
------------------------------------------

For more information how to resolve CI failures of this job, visit this link.

rust-log-analyzer avatar Dec 12 '25 15:12 rust-log-analyzer

There seems to be one issue: the native m68k libgccjit.so library is not copied in the sysroot. Instead, it takes a native x86 libgccjit.so:

rust/build/m68k-unknown-linux-gnu/stage2/lib/rustlib/m68k-unknown-linux-gnu/codegen-backends/lib/m68k-unknown-linux-gnu/libgccjit.so:       ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=7fb2bb8bf0436221a668bcd67d6042c067463bd6, with debug_info, not stripped

@Kobzol: Any idea what could be wrong here?

antoyo avatar Dec 12 '25 18:12 antoyo