Skip to content

Rollup of 28 pull requests - #160482

Open
jhpratt wants to merge 77 commits into
rust-lang:mainfrom
jhpratt:rollup-DAmHeqr
Open

Rollup of 28 pull requests#160482
jhpratt wants to merge 77 commits into
rust-lang:mainfrom
jhpratt:rollup-DAmHeqr

Conversation

@jhpratt

@jhpratt jhpratt commented Aug 4, 2026

Copy link
Copy Markdown
Member

Successful merges:

r? @ghost

Create a similar rollup

chirizxc and others added 30 commits July 11, 2026 14:27
Signed-off-by: Amirhossein Akhlaghpour <m9.akhlaghpoor@gmail.com>
Co-authored-by: Clar Fon <15850505+clarfonthey@users.noreply.github.com>
```
error[E0277]: the trait bound `needs_borrow::Hello: needs_borrow::Tr` is not satisfied
  --> $DIR/ownership-mismatch-on-arg.rs:42:13
   |
LL |             foo(hi, hi, hi);
   |             ^^^ --  -- `needs_borrow::Hello` doesn't satisfy the trait bound
   |             |   |
   |             |   `needs_borrow::Hello` doesn't satisfy the trait bound
   |             unsatisfied trait bound
   |
help: the trait `needs_borrow::Tr` is not implemented for `needs_borrow::Hello`
  --> $DIR/ownership-mismatch-on-arg.rs:27:5
   |
LL |     struct Hello;
   |     ^^^^^^^^^^^^
help: the trait `needs_borrow::Tr` is implemented for `&needs_borrow::Hello`
  --> $DIR/ownership-mismatch-on-arg.rs:30:5
   |
LL |     impl Tr for &Hello {}
   |     ^^^^^^^^^^^^^^^^^^
note: required by a bound in `needs_borrow::foo`
  --> $DIR/ownership-mismatch-on-arg.rs:32:15
   |
LL |     fn foo<T: Tr, K: std::fmt::Debug>(_v: T, _w: T, _k: K) {}
   |               ^^ required by this bound in `foo`
help: consider borrowing these argument
   |
LL |             foo(&hi, &hi, hi);
   |                 +    +
```
The linux kernel still uses fentry for x86 and s390x arches.
s390x depends entirely on the compiler to record and nop
these sections.

This facilitates support for inserting nop's and/or recording the
location of each mcount call in a special section named `__mcount_loc`.

These attributes are currently only supported with fentry on the s390x
target, otherwise they are quietly ignored (except on s390x).
* fix borrowck ICE for consts with fn pointer type

annotate_argument_and_return_for_borrow called tcx.fn_sig on the item being
checked whenever its type was FnDef or FnPtr. for a const whose type is a fn
pointer that's not a function item, so we ICE'd with "unexpected sort of node
in fn_sig". take the signature from the fn ptr type instead and skip the
annotation when there's no fn decl.
* run rustfmt and refmt
* fix borrowck ICE for consts with fn pointer type

annotate_argument_and_return_for_borrow called tcx.fn_sig on the item being
checked whenever its type was FnDef or FnPtr. for a const whose type is a fn
pointer that's not a function item, so we ICE'd with "unexpected sort of node
in fn_sig". take the signature from the fn ptr type instead and skip the
annotation when there's no fn decl.
* edit comment
* use ty.fn_sig per review
@rustbot rustbot added A-testsuite Area: The testsuite used to check the correctness of rustc O-unix Operating system: Unix-like S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-clippy Relevant to the Clippy team. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-infra Relevant to the infrastructure team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. labels Aug 4, 2026
@jhpratt

jhpratt commented Aug 4, 2026

Copy link
Copy Markdown
Member Author

@bors r+ rollup=never p=10

@rust-bors

rust-bors Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

📌 Commit 1f79129 has been approved by jhpratt

It is now in the queue for this repository.

@rust-bors rust-bors Bot added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 4, 2026
@jhpratt

jhpratt commented Aug 4, 2026

Copy link
Copy Markdown
Member Author

since the LLVM PR is having a second go, there's plenty of time for this

@bors try jobs=dist-various-1,test-various,x86_64-gnu-aux,x86_64-gnu-llvm-21-3,x86_64-msvc-1,aarch64-apple,x86_64-mingw-1,i686-msvc-*

@rust-bors

rust-bors Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

⌛ Trying commit 1f79129 with merge 1d1fd15

To cancel the try build, run the command @bors try cancel.

Workflow: https://github.com/rust-lang/rust/actions/runs/30890682079

rust-bors Bot pushed a commit that referenced this pull request Aug 4, 2026
Rollup of 28 pull requests


try-job: dist-various-1
try-job: test-various
try-job: x86_64-gnu-aux
try-job: x86_64-gnu-llvm-21-3
try-job: x86_64-msvc-1
try-job: aarch64-apple
try-job: x86_64-mingw-1
try-job: i686-msvc-*
@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Aug 4, 2026
Rollup of 28 pull requests

Successful merges:

 - #153749 (Account for ownership mismatch on argument that doesn't meet bound)
 - #159130 (a bit optimize four-digit chunks in integer formatting)
 - #159326 (Deny multiple EII impls on a single item)
 - #159535 (Optimize slice::contains for bytewise types)
 - #159595 (Promote loongarch32-unknown-none* to Tier 2)
 - #160184 (Add -Zinstrument-mcount={fentry-nop-record,fentry-record})
 - #160320 (point at trait definition when it is used as a derive macro)
 - #160369 (When suggesting method names, prefer *exact* doc aliases over similar names)
 - #160406 (`DepKind` cleanups)
 - #160424 (Use `thread::available_parallelism` as the default limit for backend parallelism)
 - #159303 (Fix ICE for direct inline const generic defaults)
 - #159977 (Add regression test for bool indexing codegen)
 - #160011 (remove InterpError::map_err_info)
 - #160165 (reject `...` without pattern post-expansion)
 - #160172 (tests: Enable `feature(stmt_expr_attributes)` in `2229_closure_analysis` tests)
 - #160295 (Fix rustdoc ICE when checking if a generic arg can be elided)
 - #160305 (Linkify C-SKY targets in `platform-support.md`)
 - #160314 (fix borrowck ICE for consts with fn pointer type)
 - #160322 (ElaborateBoxDeref: remove unnecessary projection)
 - #160338 (Add regression test for supertrait associated type normalization through dyn)
 - #160340 (Add regression test for unused_parens on contract clauses)
 - #160371 (Add doc aliases for transpositions `read_exact_buf` and `read_exact_buf_at`)
 - #160384 (Add PR body notes for Cargo lock file maintenance)
 - #160412 (Move duplicate-names check for #[rustc_must_implement_one_of] to attribute parser)
 - #160427 (Run try builds on EC2 by default)
 - #160435 (bump tracing-tree)
 - #160449 (Fix lookup of object files)
 - #160477 (Update the tracking issue for `borrowed_buf_init`)
@Kobzol

Kobzol commented Aug 4, 2026

Copy link
Copy Markdown
Member

@bors yield Trying LLVM upgrade once again.

@rust-bors

rust-bors Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Auto build was cancelled. Cancelled workflows:

The next pull request likely to be tested is #160482.

@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Aug 4, 2026
Rollup of 28 pull requests

Successful merges:

 - #153749 (Account for ownership mismatch on argument that doesn't meet bound)
 - #159130 (a bit optimize four-digit chunks in integer formatting)
 - #159326 (Deny multiple EII impls on a single item)
 - #159535 (Optimize slice::contains for bytewise types)
 - #159595 (Promote loongarch32-unknown-none* to Tier 2)
 - #160184 (Add -Zinstrument-mcount={fentry-nop-record,fentry-record})
 - #160320 (point at trait definition when it is used as a derive macro)
 - #160369 (When suggesting method names, prefer *exact* doc aliases over similar names)
 - #160406 (`DepKind` cleanups)
 - #160424 (Use `thread::available_parallelism` as the default limit for backend parallelism)
 - #159303 (Fix ICE for direct inline const generic defaults)
 - #159977 (Add regression test for bool indexing codegen)
 - #160011 (remove InterpError::map_err_info)
 - #160165 (reject `...` without pattern post-expansion)
 - #160172 (tests: Enable `feature(stmt_expr_attributes)` in `2229_closure_analysis` tests)
 - #160295 (Fix rustdoc ICE when checking if a generic arg can be elided)
 - #160305 (Linkify C-SKY targets in `platform-support.md`)
 - #160314 (fix borrowck ICE for consts with fn pointer type)
 - #160322 (ElaborateBoxDeref: remove unnecessary projection)
 - #160338 (Add regression test for supertrait associated type normalization through dyn)
 - #160340 (Add regression test for unused_parens on contract clauses)
 - #160371 (Add doc aliases for transpositions `read_exact_buf` and `read_exact_buf_at`)
 - #160384 (Add PR body notes for Cargo lock file maintenance)
 - #160412 (Move duplicate-names check for #[rustc_must_implement_one_of] to attribute parser)
 - #160427 (Run try builds on EC2 by default)
 - #160435 (bump tracing-tree)
 - #160449 (Fix lookup of object files)
 - #160477 (Update the tracking issue for `borrowed_buf_init`)
@Kobzol

Kobzol commented Aug 4, 2026

Copy link
Copy Markdown
Member

@bors yield

@rust-bors

rust-bors Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Auto build was cancelled. Cancelled workflows:

The next pull request likely to be tested is #158734.

@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Aug 4, 2026
Rollup of 28 pull requests

Successful merges:

 - #153749 (Account for ownership mismatch on argument that doesn't meet bound)
 - #159130 (a bit optimize four-digit chunks in integer formatting)
 - #159326 (Deny multiple EII impls on a single item)
 - #159535 (Optimize slice::contains for bytewise types)
 - #159595 (Promote loongarch32-unknown-none* to Tier 2)
 - #160184 (Add -Zinstrument-mcount={fentry-nop-record,fentry-record})
 - #160320 (point at trait definition when it is used as a derive macro)
 - #160369 (When suggesting method names, prefer *exact* doc aliases over similar names)
 - #160406 (`DepKind` cleanups)
 - #160424 (Use `thread::available_parallelism` as the default limit for backend parallelism)
 - #159303 (Fix ICE for direct inline const generic defaults)
 - #159977 (Add regression test for bool indexing codegen)
 - #160011 (remove InterpError::map_err_info)
 - #160165 (reject `...` without pattern post-expansion)
 - #160172 (tests: Enable `feature(stmt_expr_attributes)` in `2229_closure_analysis` tests)
 - #160295 (Fix rustdoc ICE when checking if a generic arg can be elided)
 - #160305 (Linkify C-SKY targets in `platform-support.md`)
 - #160314 (fix borrowck ICE for consts with fn pointer type)
 - #160322 (ElaborateBoxDeref: remove unnecessary projection)
 - #160338 (Add regression test for supertrait associated type normalization through dyn)
 - #160340 (Add regression test for unused_parens on contract clauses)
 - #160371 (Add doc aliases for transpositions `read_exact_buf` and `read_exact_buf_at`)
 - #160384 (Add PR body notes for Cargo lock file maintenance)
 - #160412 (Move duplicate-names check for #[rustc_must_implement_one_of] to attribute parser)
 - #160427 (Run try builds on EC2 by default)
 - #160435 (bump tracing-tree)
 - #160449 (Fix lookup of object files)
 - #160477 (Update the tracking issue for `borrowed_buf_init`)
@rust-bors rust-bors Bot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Aug 4, 2026
@rust-bors

rust-bors Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

💔 Test for 305ef3a failed: CI. Failed job:

@rust-log-analyzer

Copy link
Copy Markdown
Collaborator

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

Click to see the possible cause of the failure (guessed by this bot)
#17 164.7 --2026-08-04 08:11:22--  https://ftpmirror.gnu.org/gnu/mpc/mpc-1.3.1.tar.gz
#17 164.7 Resolving ftpmirror.gnu.org (ftpmirror.gnu.org)... 209.51.188.200, 2001:470:142:5::200
#17 164.7 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... connected.
#17 164.7 HTTP request sent, awaiting response... 302 Moved Temporarily
#17 164.7 Location: https://mirror.cyberbits.eu/gnu/gmp/gmp-6.3.0.tar.xz [following]
#17 164.7 --2026-08-04 08:11:37--  https://mirror.cyberbits.eu/gnu/gmp/gmp-6.3.0.tar.xz
#17 164.7 Resolving mirror.cyberbits.eu (mirror.cyberbits.eu)... 51.159.104.35, 2001:bc8:1201:54:ca1f:66ff:fec9:239
#17 164.7 Connecting to mirror.cyberbits.eu (mirror.cyberbits.eu)|51.159.104.35|:443... connected.
#17 164.7 HTTP request sent, awaiting response... 200 OK
#17 164.7 Length: 2094196 (2.0M) [application/x-xz]
#17 164.7 Saving to: 'gmp-6.3.0.tar.xz'
#17 164.7 
#17 164.7      0K .......... .......... .......... .......... ..........  2%  237K 8s
---
#17 164.7 cd sources/mpfr-4.2.2.tar.xz.tmp && wget -c -O mpfr-4.2.2.tar.xz https://ftpmirror.gnu.org/gnu/mpfr/mpfr-4.2.2.tar.xz
#17 164.7 --2026-08-04 08:11:38--  https://ftpmirror.gnu.org/gnu/mpfr/mpfr-4.2.2.tar.xz
#17 164.7 Resolving ftpmirror.gnu.org (ftpmirror.gnu.org)... 209.51.188.200, 2001:470:142:5::200
#17 164.7 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... 302 Moved Temporarily
#17 164.7 Location: https://ftp.nluug.nl/pub/gnu/mpc/mpc-1.3.1.tar.gz [following]
#17 164.7 --2026-08-04 08:11:46--  https://ftp.nluug.nl/pub/gnu/mpc/mpc-1.3.1.tar.gz
#17 164.7 Resolving ftp.nluug.nl (ftp.nluug.nl)... 145.220.21.40, 2001:67c:6ec:221:145:220:21:40
#17 164.7 Connecting to ftp.nluug.nl (ftp.nluug.nl)|145.220.21.40|:443... connected.
#17 164.7 HTTP request sent, awaiting response... 200 OK
#17 164.7 Length: 773573 (755K) [application/x-gzip]
#17 164.7 Saving to: 'mpc-1.3.1.tar.gz'
#17 164.7 
#17 164.7      0K .......... .......... .......... .......... ..........  6%  482K 1s
---
#17 164.7 test ! -d patches/linux-headers-4.19.88 || cat patches/linux-headers-4.19.88/* | ( cd linux-headers-4.19.88.tmp && /build/musl-cross-make/cowpatch.sh -p1 )
#17 164.7 rm -rf linux-headers-4.19.88
#17 164.7 mv linux-headers-4.19.88.tmp linux-headers-4.19.88
#17 164.7 302 Moved Temporarily
#17 164.7 Location: https://ftp.nluug.nl/pub/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz [following]
#17 164.7 --2026-08-04 08:12:00--  https://ftp.nluug.nl/pub/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz
#17 164.7 Resolving ftp.nluug.nl (ftp.nluug.nl)... 145.220.21.40, 2001:67c:6ec:221:145:220:21:40
#17 164.7 Connecting to ftp.nluug.nl (ftp.nluug.nl)|145.220.21.40|:443... 302 Moved Temporarily
#17 164.7 Location: https://ftp.nluug.nl/pub/gnu/binutils/binutils-2.44.tar.gz [following]
#17 164.7 --2026-08-04 08:12:01--  https://ftp.nluug.nl/pub/gnu/binutils/binutils-2.44.tar.gz
#17 164.7 Resolving ftp.nluug.nl (ftp.nluug.nl)... connected.
#17 164.7 145.220.21.40, 2001:67c:6ec:221:145:220:21:40
#17 164.7 Connecting to ftp.nluug.nl (ftp.nluug.nl)|145.220.21.40|:443... HTTP request sent, awaiting response... connected.
#17 164.7 HTTP request sent, awaiting response... 200 OK
#17 164.7 Length: 72411232 (69M) [application/octet-stream]
#17 164.7 Saving to: 'gcc-9.4.0.tar.xz'
#17 164.7 
#17 164.7      0K .......... .......... .......... .......... ..........  0%  486K 2m25s
---
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zkne-32.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zkne-32.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zkne-64.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zkne-64.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zknh-32.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zknh-32.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zknh-64.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zknh-64.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zksed-32.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zksed-64.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zksed.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zksh-32.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zksh-64.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zksh.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zmmul-32.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zmmul-64.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zqinx.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zqinx.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/ztso.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvbb.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvbb.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvbc.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvbc.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvfbfmin.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvfbfmin.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvfbfwma.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvfbfwma.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkb.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkb.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkg.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkg.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkn.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkn.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvknc.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvknc.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkned.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkned.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkng.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvkng.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvknha.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvknha_zvknhb.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvknhb.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvks.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvks.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvksc.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvksc.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvksed.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvksed.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvksg.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvksg.s
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvksh.d
#17 164.7 binutils-2.44/gas/testsuite/gas/riscv/zvksh.s
#17 164.7 binutils-2.44/gas/testsuite/gas/rl78/pr19157.d
#17 164.7 binutils-2.44/gas/testsuite/gas/rl78/pr19157.s
#17 164.7 binutils-2.44/gas/testsuite/gas/rl78/pr19158.d
#17 164.7 binutils-2.44/gas/testsuite/gas/rl78/pr19158.s
#17 164.7 binutils-2.44/gas/testsuite/gas/rl78/pr19159.d
---
#17 164.7 binutils-2.44/gprofng/testsuite/config/default.exp
#17 164.7 gcc-9.4.0/gcc/config/mips/elfoabi.h
#17 164.7 binutils-2.44/gprofng/testsuite/gprofng.display/display.exp
#17 164.7 gcc-9.4.0/gcc/config/mips/p6600.md
#17 164.7 binutils-2.44/gprofng/testsuite/gprofng.display/gp-archive.exp
#17 164.7 binutils-2.44/gprofng/testsuite/gprofng.display/gp-collect-app_F.exp
#17 164.7 gcc-9.4.0/gcc/config/mips/mips.md
#17 164.7 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Intface.java
#17 164.7 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Launcher.java
#17 164.7 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Makefile
#17 164.7 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Routine.java
---
#17 164.7 gcc-9.4.0/gcc/config/bfin/t-rtems
#17 164.7 binutils-2.44/include/elf/ia64.h
#17 164.7 gcc-9.4.0/gcc/config/bfin/bfin.h
#17 164.7 binutils-2.44/include/elf/internal.h
#17 164.7 binutils-2.44/include/elf/ip2k.h
#17 164.7 binutils-2.44/include/elf/iq2000.h
#17 164.7 binutils-2.44/include/elf/kvx.h
#17 164.7 binutils-2.44/include/elf/kvx_elfids.h
#17 164.7 gcc-9.4.0/gcc/config/bfin/uclinux.h
#17 164.7 binutils-2.44/include/elf/lm32.h
#17 164.7 binutils-2.44/include/elf/loongarch.h
#17 164.7 gcc-9.4.0/gcc/config/bfin/t-bfin-uclinux
#17 164.7 gcc-9.4.0/gcc/config/bfin/bfin-protos.h
---
#17 165.0 Hunk #1 succeeded at 9168 (offset 21 lines).
#17 165.0 rm -rf gcc-9.4.0
#17 165.0 mv gcc-9.4.0.tmp gcc-9.4.0
#17 165.0 failed: Connection timed out.
#17 165.0 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
#17 165.0 make: *** [Makefile:87: sources/mpfr-4.2.2.tar.xz] Error 4
#17 ERROR: process "/bin/sh -c bash musl-toolchain.sh x86_64 && rm -rf build" did not complete successfully: exit code: 1
------
 > [ 9/14] RUN bash musl-toolchain.sh x86_64 && rm -rf build:
165.0 patching file gcc/config/m68k/m68k.md
165.0 patching file gcc/builtins.c
165.0 Hunk #1 succeeded at 4656 (offset -2 lines).
165.0 patching file gcc/config/sh/sh.c
165.0 Hunk #1 succeeded at 9168 (offset 21 lines).
165.0 rm -rf gcc-9.4.0
165.0 mv gcc-9.4.0.tmp gcc-9.4.0
165.0 failed: Connection timed out.
165.0 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
165.0 make: *** [Makefile:87: sources/mpfr-4.2.2.tar.xz] Error 4
------
Dockerfile:40
--------------------
  38 |     COPY scripts/musl-cve-2026-6042.diff /build/
---
#15 136.9 209.51.188.200, 2001:470:142:5::200
#15 136.9 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... connected.
#15 136.9 HTTP request sent, awaiting response... 45.63.0.111, 2001:19f0:4009:4061:5400:ff:fe11:6da2
#15 136.9 Connecting to musl.libc.org (musl.libc.org)|45.63.0.111|:443... HTTP request sent, awaiting response... 302 Moved Temporarily
#15 136.9 Location: https://mirror.ibcp.fr/pub/gnu/binutils/binutils-2.44.tar.gz [following]
#15 136.9 --2026-08-04 08:14:04--  https://mirror.ibcp.fr/pub/gnu/binutils/binutils-2.44.tar.gz
#15 136.9 Resolving mirror.ibcp.fr (mirror.ibcp.fr)... 194.254.245.145, 2001:660:500b:245::145
#15 136.9 Connecting to mirror.ibcp.fr (mirror.ibcp.fr)|194.254.245.145|:443... connected.
#15 136.9 HTTP request sent, awaiting response... 302 Moved Temporarily
#15 136.9 Location: https://ftp.nluug.nl/pub/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz [following]
#15 136.9 --2026-08-04 08:14:05--  https://ftp.nluug.nl/pub/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz
#15 136.9 Resolving ftp.nluug.nl (ftp.nluug.nl)... 200 OK
#15 136.9 Length: 51342242 (49M) [application/x-gzip]
#15 136.9 Saving to: 'binutils-2.44.tar.gz'
#15 136.9 
#15 136.9      0K .......... .......... .......... .........145.220.21.40, 2001:67c:6ec:221:145:220:21:40
#15 136.9 Connecting to ftp.nluug.nl (ftp.nluug.nl)|145.220.21.40|:443... . ..........  0%  245K 3m24s
#15 136.9     50K .......... .......... .......... .......... ..........  0% 55.6M 1m42s
#15 136.9    100K .......... ........connected.
#15 136.9 .. .......... .......... ..........  0%  492K 1m42s
#15 136.9    150K .......... .......... .......... .......... ..........  0%  489K 1m42s
#15 136.9    200K .......... .......... .......... .......... ..........  0%  137M 82s
---
#15 136.9  37450K .......... .......... .......... .......... .......... 53%  238M 7s
#15 136.9  37500K .......... .......... .......... .......... .......... 53%  618K 7s
#15 136.9  37550K .......... .......... .......... .......... .......... 53%  214M 7s
#15 136.9  37600K .......... .......... .......... .302 Moved Temporarily
#15 136.9 Location: https://ftp.snt.utwente.nl/pub/software/gnu/mpc/mpc-1.3.1.tar.gz [following]
#15 136.9 --2026-08-04 08:14:14--  https://ftp.snt.utwente.nl/pub/software/gnu/mpc/mpc-1.3.1.tar.gz
#15 136.9 Resolving ftp.snt.utwente.nl (ftp.snt.utwente.nl)... ......... .......... 53%  215K 7s
#15 136.9  37650K .......... .......... .......... .......... .......... 53%  236M 7s
#15 136.9  37700K .......... .......... .......... .......... .......... 53%  282M 7s
#15 136.9  37750K .........HTTP request sent, awaiting response... 130.89.149.20, 2001:67c:2564:a120::20
#15 136.9 Connecting to ftp.snt.utwente.nl (ftp.snt.utwente.nl)|130.89.149.20|:443... . .......... .......... .......... .......... 53%  490K 7s
#15 136.9  37800K .......... .......... .......... .......... .......... 53%  233M 7s
#15 136.9  37850K .......... .......... .......... .......200 OK
#15 136.9 Length: 1080786 (1.0M) [application/octet-stream]
#15 136.9 Saving to: 'musl-1.2.5.tar.gz'
#15 136.9 
---
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zkne-32.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zkne-32.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zkne-64.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zkne-64.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zknh-32.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zknh-32.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zknh-64.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zknh-64.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zksed-32.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zksed-64.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zksed.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zksh-32.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zksh-64.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zksh.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zmmul-32.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zmmul-64.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zqinx.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zqinx.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/ztso.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvbb.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvbb.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvbc.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvbc.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvfbfmin.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvfbfmin.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvfbfwma.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvfbfwma.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkb.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkb.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkg.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkg.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkn.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkn.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvknc.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvknc.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkned.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkned.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkng.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvkng.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvknha.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvknha_zvknhb.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvknhb.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvks.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvks.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvksc.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvksc.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvksed.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvksed.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvksg.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvksg.s
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvksh.d
#15 136.9 binutils-2.44/gas/testsuite/gas/riscv/zvksh.s
#15 136.9 binutils-2.44/gas/testsuite/gas/rl78/pr19157.d
#15 136.9 binutils-2.44/gas/testsuite/gas/rl78/pr19157.s
#15 136.9 binutils-2.44/gas/testsuite/gas/rl78/pr19158.d
#15 136.9 binutils-2.44/gas/testsuite/gas/rl78/pr19158.s
#15 136.9 binutils-2.44/gas/testsuite/gas/rl78/pr19159.d
---
#15 136.9 binutils-2.44/gprofng/src/util.h
#15 136.9 binutils-2.44/gprofng/src/vec.h
#15 136.9 binutils-2.44/gprofng/testsuite/config/default.exp
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/display.exp
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/gp-archive.exp
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/gp-collect-app_F.exp
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Intface.java
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Launcher.java
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Makefile
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Routine.java
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/Sub_Routine.java
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/check_results.pl
#15 136.9 binutils-2.44/gprofng/testsuite/gprofng.display/jsynprog/cloop.cc
---
#15 136.9 binutils-2.44/include/elf/i860.h
#15 136.9 binutils-2.44/include/elf/i960.h
#15 136.9 binutils-2.44/include/elf/ia64.h
#15 136.9 binutils-2.44/include/elf/internal.h
#15 136.9 binutils-2.44/include/elf/ip2k.h
#15 136.9 binutils-2.44/include/elf/iq2000.h
#15 136.9 binutils-2.44/include/elf/kvx.h
#15 136.9 binutils-2.44/include/elf/kvx_elfids.h
#15 136.9 binutils-2.44/include/elf/lm32.h
#15 136.9 binutils-2.44/include/elf/loongarch.h
#15 136.9 binutils-2.44/include/elf/m32c.h
#15 136.9 binutils-2.44/include/elf/m32r.h
#15 136.9 binutils-2.44/include/elf/m68hc11.h
#15 136.9 binutils-2.44/include/elf/m68k.h
---
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/call-relax-1.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/call-relax-2.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/call-relax-3.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/call-relax.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-01.ld
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-02.ld
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medany-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medany-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medany-weakref-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medany-weakref-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medlow-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medlow-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medlow-weakref-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medlow-weakref-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medany-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medany-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medany-weakref-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medany-weakref-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-01-norelaxgp.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-weakref-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-weakref-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/data-reloc-rv32-pic.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/data-reloc-rv32-pie.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/data-reloc-rv32-symbolic.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/data-reloc-rv64-abs32-pic.d
---
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/ifunc-seperate-plt-exe.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/ifunc-seperate-plt-pic.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/ifunc-seperate-plt-pie.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/ifunc-seperate-resolver.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/ld-riscv-elf.exp
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-01-norelaxgp.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-01.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-01.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-02.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-02.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2a.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2a.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2b.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2b.s
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-3.ld
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-3a-emit-relocs.d
#15 136.9 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-3a.d
---
#15 136.9 binutils-2.44/ld/testsuite/ld-xtensa/tlspic1.s
#15 136.9 binutils-2.44/ld/testsuite/ld-xtensa/tlspic2.s
#15 136.9 binutils-2.44/ld/testsuite/ld-xtensa/tlspie.dd
#15 136.9 binutils-2.44/ld/testsuite/ld-xtensa/tlspie.rd
#15 136.9 binutils-2.44/ld/testsuite/ld-xtensa/tlspie.sd
#15 136.9 binutils-2.44/ld/testsuite/ld-xtensa/tlspie.td
#15 136.9 binutils-2.44/ld/testsuite/ld-xtensa/xtensa-linux.exp
#15 136.9 binutils-2.44/ld/testsuite/ld-xtensa/xtensa.exp
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/arch_default.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/arch_ez80_adl.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/arch_ez80_z80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/arch_r800.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/arch_z180.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/arch_z80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/arch_z80n.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/comb_arch_ez80_z80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/comb_arch_z180_z80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/comb_arch_z80_ez80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/comb_arch_z80_z180.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/comb_arch_z80_z80n.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/dummy1.s
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/dummy2.s
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/jr.s
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/jr_b.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/jr_f.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/labels.s
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/relocs.s
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/relocs_b_ez80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/relocs_b_z80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/relocs_f_ez80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/relocs_f_z80.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/relocs_f_z80n.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z80/z80.exp
#15 136.9 binutils-2.44/ld/testsuite/ld-z8k/0filler.s
#15 136.9 binutils-2.44/ld/testsuite/ld-z8k/branch-target.s
#15 136.9 binutils-2.44/ld/testsuite/ld-z8k/branch-target2.s
#15 136.9 binutils-2.44/ld/testsuite/ld-z8k/calr-back-8001.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z8k/calr-back-8002.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z8k/calr-back-fail-8001.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z8k/calr-back-fail-8002.d
#15 136.9 binutils-2.44/ld/testsuite/ld-z8k/calr-forw-8001.d
---
#15 136.9  49600K .......... .......... .......... .......... .......... 70%  291M 6s
#15 136.9  49650K .......... .......... .......... .......... .......... 70%  291M 6s
#15 136.9  49700K .......... .......... .......... .......... .......... 70%  288M 6s
#15 136.9  49750K .......... .......... .......... .......... .302 Moved Temporarily
#15 136.9 Location: https://mirror.ibcp.fr/pub/gnu/mpfr/mpfr-4.2.2.tar.xz [following]
#15 136.9 --2026-08-04 08:14:20--  https://mirror.ibcp.fr/pub/gnu/mpfr/mpfr-4.2.2.tar.xz
#15 136.9 Resolving mirror.ibcp.fr (mirror.ibcp.fr)... ......... 70%  435K 6s
#15 136.9  49800K .......... .......... .......... .......... .......... 70%  210M 6s
#15 136.9  49850K .......... .......... .......... .......... .......... 70%  291M 6s
#15 136.9  49900K .......... .......... .......... .......... .......... 70%  658K 6s
#15 136.9  49950K .......... .......... .......... .......... .......... 70%  210M 6s
#15 136.9  50000K .......... .......... .......... .......... .......... 70% 2.97M 6s
#15 136.9  50050K .......... .......... .......... .......... .......... 70%  166M 6s
#15 136.9  50100K .......... .......... .......... .......... .......... 70%  290M 6s
#15 136.9  50150K .......... .......... .....194.254.245.145, 2001:660:500b:245::145
#15 136.9 Connecting to mirror.ibcp.fr (mirror.ibcp.fr)|194.254.245.145|:443... ..... .......... .......... 70%  315K 6s
#15 136.9  50200K .......... .......... .......... .......... .......... 71%  256M 6s
#15 136.9  50250K .......... .......... .......... .......... .......... 71%  293M 6s
#15 136.9  50300K ...connected.
#15 136.9 ....... .......... .......... .......... .......... 71% 1.51M 6s
#15 136.9  50350K .......... .......... .......... .......... .......... 71%  147M 6s
---
#15 137.2 Hunk #1 succeeded at 9168 (offset 21 lines).
#15 137.2 rm -rf gcc-9.4.0
#15 137.2 mv gcc-9.4.0.tmp gcc-9.4.0
#15 137.2 failed: Connection timed out.
#15 137.2 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
#15 137.2 make: *** [Makefile:87: sources/gmp-6.3.0.tar.xz] Error 4
#15 ERROR: process "/bin/sh -c bash musl-toolchain.sh x86_64 && rm -rf build" did not complete successfully: exit code: 1
------
 > [ 9/14] RUN bash musl-toolchain.sh x86_64 && rm -rf build:
137.2 patching file gcc/config/m68k/m68k.md
137.2 patching file gcc/builtins.c
137.2 Hunk #1 succeeded at 4656 (offset -2 lines).
137.2 patching file gcc/config/sh/sh.c
137.2 Hunk #1 succeeded at 9168 (offset 21 lines).
137.2 rm -rf gcc-9.4.0
137.2 mv gcc-9.4.0.tmp gcc-9.4.0
137.2 failed: Connection timed out.
137.2 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
137.2 make: *** [Makefile:87: sources/gmp-6.3.0.tar.xz] Error 4
------
Dockerfile:40
--------------------
  38 |     COPY scripts/musl-cve-2026-6042.diff /build/
---
#16 148.2 --2026-08-04 08:16:31--  https://ftpmirror.gnu.org/gnu/mpc/mpc-1.3.1.tar.gz
#16 148.2 Resolving ftpmirror.gnu.org (ftpmirror.gnu.org)... 209.51.188.200, 2001:470:142:5::200
#16 148.2 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... failed: Connection timed out.
#16 148.2 failed: Connection timed out.
#16 148.2 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Connection timed out.
#16 148.2 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
#16 148.2 failed: Network is unreachable.
#16 148.2 failed: Network is unreachable.
#16 148.2 make: *** [Makefile:88: sources/gcc-9.4.0.tar.xz] Error 4
#16 148.2 make: *** Waiting for unfinished jobs....
#16 148.2 make: *** [Makefile:88: sources/binutils-2.44.tar.gz] Error 4
#16 148.2 make: *** [Makefile:88: sources/gmp-6.3.0.tar.xz] Error 4
#16 148.2 failed: Connection timed out.
#16 148.2 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
#16 148.2 make: *** [Makefile:88: sources/mpc-1.3.1.tar.gz] Error 4
#16 ERROR: process "/bin/sh -c bash musl-toolchain.sh x86_64 && rm -rf build" did not complete successfully: exit code: 1
------
 > [ 9/14] RUN bash musl-toolchain.sh x86_64 && rm -rf build:
148.2 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
148.2 failed: Network is unreachable.
148.2 failed: Network is unreachable.
148.2 make: *** [Makefile:88: sources/gcc-9.4.0.tar.xz] Error 4
148.2 make: *** Waiting for unfinished jobs....
148.2 make: *** [Makefile:88: sources/binutils-2.44.tar.gz] Error 4
148.2 make: *** [Makefile:88: sources/gmp-6.3.0.tar.xz] Error 4
148.2 failed: Connection timed out.
148.2 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
148.2 make: *** [Makefile:88: sources/mpc-1.3.1.tar.gz] Error 4
------
Dockerfile:40
--------------------
  38 |     COPY scripts/musl-cve-2026-6042.diff /build/
  39 |     COPY scripts/musl-cve-2026-40200.diff /build/
---
#15 143.5 --2026-08-04 08:18:57--  https://ftpmirror.gnu.org/gnu/mpc/mpc-1.3.1.tar.gz
#15 143.5 Resolving ftpmirror.gnu.org (ftpmirror.gnu.org)... 209.51.188.200, 2001:470:142:5::200
#15 143.5 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... connected.
#15 143.5 HTTP request sent, awaiting response... 302 Moved Temporarily
#15 143.5 Location: https://ftp.snt.utwente.nl/pub/software/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz [following]
#15 143.5 --2026-08-04 08:19:02--  https://ftp.snt.utwente.nl/pub/software/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz
#15 143.5 Resolving ftp.snt.utwente.nl (ftp.snt.utwente.nl)... 130.89.149.20, 2001:67c:2564:a120::20
#15 143.5 Connecting to ftp.snt.utwente.nl (ftp.snt.utwente.nl)|130.89.149.20|:443... connected.
#15 143.5 HTTP request sent, awaiting response... 200 OK
#15 143.5 Length: 72411232 (69M) [application/x-xz]
#15 143.5 Saving to: 'gcc-9.4.0.tar.xz'
#15 143.5 
#15 143.5      0K .......... .......... .......... .......... ..........  0%  293K 4m1s
---
#15 143.5 --2026-08-04 08:19:06--  https://ftpmirror.gnu.org/gnu/mpfr/mpfr-4.2.2.tar.xz
#15 143.5 Resolving ftpmirror.gnu.org (ftpmirror.gnu.org)... 209.51.188.200, 2001:470:142:5::200
#15 143.5 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... connected.
#15 143.5 HTTP request sent, awaiting response... 302 Moved Temporarily
#15 143.5 Location: https://mirror.ibcp.fr/pub/gnu/binutils/binutils-2.44.tar.gz [following]
#15 143.5 --2026-08-04 08:19:11--  https://mirror.ibcp.fr/pub/gnu/binutils/binutils-2.44.tar.gz
#15 143.5 Resolving mirror.ibcp.fr (mirror.ibcp.fr)... 194.254.245.145, 2001:660:500b:245::145
#15 143.5 Connecting to mirror.ibcp.fr (mirror.ibcp.fr)|194.254.245.145|:443... connected.
#15 143.5 HTTP request sent, awaiting response... 200 OK
#15 143.5 Length: 51342242 (49M) [application/x-gzip]
#15 143.5 Saving to: 'binutils-2.44.tar.gz'
#15 143.5 
#15 143.5      0K .......... .......... .......... .......... ..........  0%  245K 3m24s
---
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/spe-small-data-1.c
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/dfp-td-2.c
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/sse-check.h
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/pr88965.c
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/vec-rlmi-rlnm.c
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/darwin-bool-2.c
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/vec-extract-v16qi-df.c
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/pr84220-xxperm.c
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/bmi2-pdep32-1.c
#15 143.5 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/atomic_load_store-p8.c
---
#15 143.8 rm -rf linux-headers-4.19.88
#15 143.8 mv linux-headers-4.19.88.tmp linux-headers-4.19.88
#15 143.8 connected.
#15 143.8 HTTP request sent, awaiting response... 302 Moved Temporarily
#15 143.8 Location: https://mirror.ibcp.fr/pub/gnu/mpfr/mpfr-4.2.2.tar.xz [following]
#15 143.8 --2026-08-04 08:19:42--  https://mirror.ibcp.fr/pub/gnu/mpfr/mpfr-4.2.2.tar.xz
#15 143.8 Resolving mirror.ibcp.fr (mirror.ibcp.fr)... 194.254.245.145, 2001:660:500b:245::145
#15 143.8 Connecting to mirror.ibcp.fr (mirror.ibcp.fr)|194.254.245.145|:443... connected.
#15 143.8 HTTP request sent, awaiting response... 200 OK
#15 143.8 Length: 1505596 (1.4M) [application/x-xz]
#15 143.8 Saving to: 'mpfr-4.2.2.tar.xz'
#15 143.8 
#15 143.8      0K .......... .......... .......... .......... ..........  3%  245K 6s
---
#15 143.8 rm -rf mpfr-4.2.2
#15 143.8 mv mpfr-4.2.2.tmp mpfr-4.2.2
#15 143.8 connected.
#15 143.8 HTTP request sent, awaiting response... 302 Moved Temporarily
#15 143.8 Location: https://ftp.snt.utwente.nl/pub/software/gnu/gmp/gmp-6.3.0.tar.xz [following]
#15 143.8 --2026-08-04 08:19:59--  https://ftp.snt.utwente.nl/pub/software/gnu/gmp/gmp-6.3.0.tar.xz
#15 143.8 Resolving ftp.snt.utwente.nl (ftp.snt.utwente.nl)... 130.89.149.20, 2001:67c:2564:a120::20
#15 143.8 Connecting to ftp.snt.utwente.nl (ftp.snt.utwente.nl)|130.89.149.20|:443... connected.
#15 143.8 HTTP request sent, awaiting response... 200 OK
#15 143.8 Length: 2094196 (2.0M) [application/x-xz]
#15 143.8 Saving to: 'gmp-6.3.0.tar.xz'
#15 143.8 
#15 143.8      0K .......... .......... .......... .......... ..........  2%  304K 7s
---
#15 143.8 test ! -d patches/gmp-6.3.0 || cat patches/gmp-6.3.0/* | ( cd gmp-6.3.0.tmp && /build/musl-cross-make/cowpatch.sh -p1 )
#15 143.8 rm -rf gmp-6.3.0
#15 143.8 mv gmp-6.3.0.tmp gmp-6.3.0
#15 143.8 failed: Connection timed out.
#15 143.8 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
#15 143.8 make: *** [Makefile:87: sources/mpc-1.3.1.tar.gz] Error 4
#15 ERROR: process "/bin/sh -c bash musl-toolchain.sh x86_64 && rm -rf build" did not complete successfully: exit code: 1
------
 > [ 9/14] RUN bash musl-toolchain.sh x86_64 && rm -rf build:
143.8 case "gmp-6.3.0" in */*) exit 1 ;; esac
143.8 rm -rf gmp-6.3.0.tmp
143.8 mkdir gmp-6.3.0.tmp
143.8 ( cd gmp-6.3.0.tmp && /build/musl-cross-make/cowpatch.sh -I ../gmp-6.3.0.orig )
143.8 test ! -d patches/gmp-6.3.0 || cat patches/gmp-6.3.0/* | ( cd gmp-6.3.0.tmp && /build/musl-cross-make/cowpatch.sh -p1 )
143.8 rm -rf gmp-6.3.0
143.8 mv gmp-6.3.0.tmp gmp-6.3.0
143.8 failed: Connection timed out.
143.8 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
143.8 make: *** [Makefile:87: sources/mpc-1.3.1.tar.gz] Error 4
------
Dockerfile:40
--------------------
  38 |     COPY scripts/musl-cve-2026-6042.diff /build/
  39 |     COPY scripts/musl-cve-2026-40200.diff /build/
---
#16 138.3 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... 209.51.188.200, 2001:470:142:5::200
#16 138.3 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... connected.
#16 138.3 HTTP request sent, awaiting response... 209.51.188.200, 2001:470:142:5::200
#16 138.3 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... 302 Moved Temporarily
#16 138.3 Location: https://ftp.snt.utwente.nl/pub/software/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz [following]
#16 138.3 --2026-08-04 08:21:20--  https://ftp.snt.utwente.nl/pub/software/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.xz
#16 138.3 Resolving ftp.snt.utwente.nl (ftp.snt.utwente.nl)... 130.89.149.20, 2001:67c:2564:a120::20
#16 138.3 Connecting to ftp.snt.utwente.nl (ftp.snt.utwente.nl)|130.89.149.20|:443... connected.
#16 138.3 HTTP request sent, awaiting response... 200 OK
#16 138.3 Length: 72411232 (69M) [application/x-xz]
#16 138.3 Saving to: 'gcc-9.4.0.tar.xz'
#16 138.3 
#16 138.3      0K .......... .......... .......... .......... ..........  0%  304K 3m52s
---
#16 138.3 --2026-08-04 08:21:24--  https://ftpmirror.gnu.org/gnu/mpfr/mpfr-4.2.2.tar.xz
#16 138.3 Resolving ftpmirror.gnu.org (ftpmirror.gnu.org)... 209.51.188.200, 2001:470:142:5::200
#16 138.3 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:443... connected.
#16 138.3 HTTP request sent, awaiting response... 302 Moved Temporarily
#16 138.3 Location: https://ftp.nluug.nl/pub/gnu/mpfr/mpfr-4.2.2.tar.xz [following]
#16 138.3 --2026-08-04 08:21:32--  https://ftp.nluug.nl/pub/gnu/mpfr/mpfr-4.2.2.tar.xz
#16 138.3 Resolving ftp.nluug.nl (ftp.nluug.nl)... 145.220.21.40, 2001:67c:6ec:221:145:220:21:40
#16 138.3 Connecting to ftp.nluug.nl (ftp.nluug.nl)|145.220.21.40|:443... connected.
#16 138.3 HTTP request sent, awaiting response... 200 OK
#16 138.3 Length: 1505596 (1.4M) [application/octet-stream]
#16 138.3 Saving to: 'mpfr-4.2.2.tar.xz'
#16 138.3 
#16 138.3      0K .......... .......... .......... .......... ..........  3%  485K 3s
---
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/spe-small-data-1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/dfp-td-2.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/sse-check.h
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/pr88965.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/vec-rlmi-rlnm.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/darwin-bool-2.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/vec-extract-v16qi-df.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/pr84220-xxperm.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/bmi2-pdep32-1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/powerpc/atomic_load_store-p8.c
---
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/global-array-almost-negative-huge-element.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/nolrl-1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/atomic_exchange-1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/andc-splitter-2.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/movstr-1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/andc-splitter-1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/setmem_long-1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/rXsbg_mode_sXl.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/atomic_compare_exchange-1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/md/atomic_compare_exchange-1.inc
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/fp2int1.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/pr84332.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/s390/nobp-return-reg-nothunk.c
---
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/builtin-setgie-en.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/builtin-isb.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/basic-main.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/builtin-isync.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/builtin-mfusr-mtusr.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/builtin-setgie-dis.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/builtin-mfsr-mtsr.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/nds32/nds32.exp
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/vax/
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/vax/vax.exp
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/vax/pr56875.c
#16 138.3 gcc-9.4.0/gcc/testsuite/gcc.target/vax/bswapdi-1.c
---
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/call-relax-1.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/call-relax-2.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/call-relax-3.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/call-relax.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-01.ld
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-02.ld
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medany-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medany-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medany-weakref-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medany-weakref-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medlow-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medlow-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medlow-weakref-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-medlow-weakref-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medany-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medany-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medany-weakref-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medany-weakref-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-01-norelaxgp.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-weakref-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model-relax-medlow-weakref-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/code-model.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/data-reloc-rv32-pic.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/data-reloc-rv32-pie.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/data-reloc-rv32-symbolic.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/data-reloc-rv64-abs32-pic.d
---
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/ifunc-seperate-plt-exe.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/ifunc-seperate-plt-pic.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/ifunc-seperate-plt-pie.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/ifunc-seperate-resolver.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/ld-riscv-elf.exp
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-01-norelaxgp.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-01.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-01.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-02.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcgp-relax-02.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2a.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2a.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2b.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2b.s
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-3.ld
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-3a-emit-relocs.d
#16 138.5 binutils-2.44/ld/testsuite/ld-riscv-elf/pcrel-lo-addend-3a.d
---
#16 138.5 binutils-2.44/ld/testsuite/ld-xtensa/tlspic1.s
#16 138.5 binutils-2.44/ld/testsuite/ld-xtensa/tlspic2.s
#16 138.5 binutils-2.44/ld/testsuite/ld-xtensa/tlspie.dd
#16 138.5 binutils-2.44/ld/testsuite/ld-xtensa/tlspie.rd
#16 138.5 binutils-2.44/ld/testsuite/ld-xtensa/tlspie.sd
#16 138.5 binutils-2.44/ld/testsuite/ld-xtensa/tlspie.td
#16 138.5 binutils-2.44/ld/testsuite/ld-xtensa/xtensa-linux.exp
#16 138.5 binutils-2.44/ld/testsuite/ld-xtensa/xtensa.exp
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/arch_default.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/arch_ez80_adl.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/arch_ez80_z80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/arch_r800.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/arch_z180.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/arch_z80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/arch_z80n.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/comb_arch_ez80_z80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/comb_arch_z180_z80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/comb_arch_z80_ez80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/comb_arch_z80_z180.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/comb_arch_z80_z80n.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/dummy1.s
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/dummy2.s
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/jr.s
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/jr_b.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/jr_f.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/labels.s
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/relocs.s
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/relocs_b_ez80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/relocs_b_z80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/relocs_f_ez80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/relocs_f_z80.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/relocs_f_z80n.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z80/z80.exp
#16 138.5 binutils-2.44/ld/testsuite/ld-z8k/0filler.s
#16 138.5 binutils-2.44/ld/testsuite/ld-z8k/branch-target.s
#16 138.5 binutils-2.44/ld/testsuite/ld-z8k/branch-target2.s
#16 138.5 binutils-2.44/ld/testsuite/ld-z8k/calr-back-8001.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z8k/calr-back-8002.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z8k/calr-back-fail-8001.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z8k/calr-back-fail-8002.d
#16 138.5 binutils-2.44/ld/testsuite/ld-z8k/calr-forw-8001.d
---
#16 138.5 rm -rf binutils-2.44
#16 138.5 mv binutils-2.44.tmp binutils-2.44
#16 138.5 connected.
#16 138.5 HTTP request sent, awaiting response... 302 Moved Temporarily
#16 138.5 Location: https://mirror.ibcp.fr/pub/gnu/gmp/gmp-6.3.0.tar.xz [following]
#16 138.5 --2026-08-04 08:21:58--  https://mirror.ibcp.fr/pub/gnu/gmp/gmp-6.3.0.tar.xz
#16 138.5 Resolving mirror.ibcp.fr (mirror.ibcp.fr)... 194.254.245.145, 2001:660:500b:245::145
#16 138.5 Connecting to mirror.ibcp.fr (mirror.ibcp.fr)|194.254.245.145|:443... connected.
#16 138.5 HTTP request sent, awaiting response... 200 OK
#16 138.5 Length: 2094196 (2.0M) [application/x-xz]
#16 138.5 Saving to: 'gmp-6.3.0.tar.xz'
#16 138.5 
#16 138.5      0K .......... .......... .......... .......... ..........  2%  264K 8s
---
#16 138.5 test ! -d patches/gmp-6.3.0 || cat patches/gmp-6.3.0/* | ( cd gmp-6.3.0.tmp && /build/musl-cross-make/cowpatch.sh -p1 )
#16 138.5 rm -rf gmp-6.3.0
#16 138.5 mv gmp-6.3.0.tmp gmp-6.3.0
#16 138.5 failed: Connection timed out.
#16 138.5 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
#16 138.5 make: *** [Makefile:87: sources/mpc-1.3.1.tar.gz] Error 4
#16 ERROR: process "/bin/sh -c bash musl-toolchain.sh x86_64 && rm -rf build" did not complete successfully: exit code: 1
------
 > [ 9/14] RUN bash musl-toolchain.sh x86_64 && rm -rf build:
138.5 case "gmp-6.3.0" in */*) exit 1 ;; esac
138.5 rm -rf gmp-6.3.0.tmp
138.5 mkdir gmp-6.3.0.tmp
138.5 ( cd gmp-6.3.0.tmp && /build/musl-cross-make/cowpatch.sh -I ../gmp-6.3.0.orig )
138.5 test ! -d patches/gmp-6.3.0 || cat patches/gmp-6.3.0/* | ( cd gmp-6.3.0.tmp && /build/musl-cross-make/cowpatch.sh -p1 )
138.5 rm -rf gmp-6.3.0
138.5 mv gmp-6.3.0.tmp gmp-6.3.0
138.5 failed: Connection timed out.
138.5 Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|2001:470:142:5::200|:443... failed: Network is unreachable.
138.5 make: *** [Makefile:87: sources/mpc-1.3.1.tar.gz] Error 4
------
Dockerfile:40
--------------------
  38 |     COPY scripts/musl-cve-2026-6042.diff /build/
  39 |     COPY scripts/musl-cve-2026-40200.diff /build/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-attributes Area: Attributes (`#[…]`, `#![…]`) A-CI Area: Our Github Actions CI A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-testsuite Area: The testsuite used to check the correctness of rustc O-unix Operating system: Unix-like rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-clippy Relevant to the Clippy team. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-infra Relevant to the infrastructure team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

Projects

None yet

Development

Successfully merging this pull request may close these issues.