Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 8 pull requests #85720

Merged
merged 21 commits into from
May 26, 2021
Merged

Rollup of 8 pull requests #85720

merged 21 commits into from
May 26, 2021

Conversation

Dylan-DPC-zz
Copy link

Successful merges:

Failed merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

FabianWolff and others added 21 commits May 19, 2021 18:51
Emit a diagnostic when the monomorphized item collector
encounters errors during a step of the recursive item collection.

These post-monomorphization errors otherwise only show the
erroneous expression without a trace, making them very obscure
and hard to pinpoint whenever they happen in dependencies.
This test reproduces post-monomorphization errors one can encounter
when using incorrect immediate arguments to some of the stdarch
intrinsics using const generics.
…nkov

Disallow shadowing const parameters

This pull request fixes rust-lang#85348. Trying to shadow a `const` parameter as follows:
```rust
fn foo<const N: i32>() {
    let N @ _ = 0;
}
```
currently causes an ICE. With my changes, I get:
```
error[E0530]: let bindings cannot shadow const parameters
 --> test.rs:2:9
  |
1 | fn foo<const N: i32>() {
  |              - the const parameter `N` is defined here
2 |     let N @ _ = 0;
  |         ^ cannot be named the same as a const parameter

error: aborting due to previous error
```
This is the same error you get when trying to shadow a constant:
```rust
const N: i32 = 0;
let N @ _ = 0;
```
```
error[E0530]: let bindings cannot shadow constants
 --> src/lib.rs:3:5
  |
2 | const N: i32 = 0;
  | ----------------- the constant `N` is defined here
3 | let N @ _ = 0;
  |     ^ cannot be named the same as a constant

error: aborting due to previous error
```
The reason for disallowing shadowing in both cases is described [here](rust-lang#33118 (comment)) (the comment there only talks about constants, but the same reasoning applies to `const` parameters).
…panics, r=nagisa

Prevent double drop in `Vec::dedup_by` if a destructor panics

Fixes rust-lang#85613
…, r=nikomatsakis

Fix a few details in THIR unsafeck

This makes it consistent with RFC 2585 (`unsafe_op_in_unsafe_fn`) and with the MIR unsafeck.

r? `@nikomatsakis`
Post-monomorphization errors traces MVP

This PR works towards better diagnostics for the errors encountered in rust-lang#85155 and similar.

We can encounter post-monomorphization errors (PMEs) when collecting mono items. The current diagnostics are confusing for these cases when they happen in a dependency (but are acceptable when they happen in the local crate).

These kinds of errors will be more likely now that `stdarch` uses const generics for its intrinsics' immediate arguments, and validates these const arguments with a mechanism that triggers such PMEs.

(Not to mention that the errors happen during codegen, so only when building code that actually uses these code paths. Check builds don't trigger them, neither does unused code)

So in this PR, we detect these kinds of errors during the mono item graph walk: if any error happens while collecting a node or its neighbors, we print a diagnostic about the current collection step, so that the user has at least some context of which erroneous code and dependency triggered the error.

The diagnostics for issue rust-lang#85155 now have this note showing the source of the erroneous const argument:
```
note: the above error was encountered while instantiating `fn std::arch::x86_64::_mm_blend_ps::<51_i32>`
  --> issue-85155.rs:11:24
   |
11 |         let _blended = _mm_blend_ps(a, b, 0x33);
   |                        ^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error
```

Note that rust-lang#85155 is a reduced version of a case happening in the wild, to indirect users of the `rustfft` crate, as seen in ejmahler/RustFFT#74. The crate had a few of these out-of-range immediates. Here's how the diagnostics in this PR would have looked on one of its examples before it was fixed:

<details>

```
error[E0080]: evaluation of constant value failed
 --> ./stdarch/crates/core_arch/src/macros.rs:8:9
  |
8 |         assert!(IMM >= MIN && IMM <= MAX, "IMM value not in expected range");
  |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'IMM value not in expected range', ./stdarch/crates/core_arch/src/macros.rs:8:9
  |
  = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)

note: the above error was encountered while instantiating `fn _mm_blend_ps::<51_i32>`
    --> /tmp/RustFFT/src/avx/avx_vector.rs:1314:23
     |
1314 |         let blended = _mm_blend_ps(rows[0], rows[2], 0x33);
     |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

note: the above error was encountered while instantiating `fn _mm_permute_pd::<5_i32>`
    --> /tmp/RustFFT/src/avx/avx_vector.rs:1859:9
     |
1859 |         _mm_permute_pd(self, 0x05)
     |         ^^^^^^^^^^^^^^^^^^^^^^^^^^

note: the above error was encountered while instantiating `fn _mm_permute_pd::<15_i32>`
    --> /tmp/RustFFT/src/avx/avx_vector.rs:1863:32
     |
1863 |         (_mm_movedup_pd(self), _mm_permute_pd(self, 0x0F))
     |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0080`.
error: could not compile `rustfft`

To learn more, run the command again with --verbose.
```

</details>

I've developed and discussed this with them, so maybe r? `@oli-obk` -- but feel free to redirect to someone else of course.

(I'm not sure we can say that this PR definitely closes issue 85155, as it's still unclear exactly which diagnostics and information would be interesting to report in such cases -- and we've discussed printing backtraces before. I have prototypes of some complete and therefore noisy backtraces I showed Oli, but we decided to not include them in this PR for now)
Remove arrays/IntoIterator message from Iterator trait.

Arrays implement IntoIterator since 1.53.

cc rust-lang#84513
fix `matches!` and `assert_matches!` on edition 2021

Previously this code failed to compile on edition 2021. [(Playground)](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=53960f2f051f641777b9e458da747707)
```rust
fn main() {
    matches!((), ());
}
```
```
   Compiling playground v0.0.1 (/playground)
error: `$pattern:pat` may be followed by `|`, which is not allowed for `pat` fragments
    |
    = note: allowed there are: `=>`, `,`, `=`, `if` or `in`

error: aborting due to previous error

error: could not compile `playground`

To learn more, run the command again with --verbose.
```
Remove num_as_ne_bytes feature

From the discussion in rust-lang#76976, it is determined that eventual results of the safe transmute work as a more general mechanism will let these conversions happen in safe code without needing specialized methods.

Merging this PR closes rust-lang#76976 and resolves rust-lang#64464. Several T-libs members have raised their opinion that it doesn't pull its weight as a standalone method, and so we should not track it as a specific thing to add.
Fix typo in core::array::IntoIter comment

Saw a small typo reading some internal comments and decided to just throw this up to fix it for future readers.
@rustbot rustbot added the rollup A PR which is a rollup label May 26, 2021
@Dylan-DPC-zz
Copy link
Author

@bors r+ rollup=never p=5

@bors
Copy link
Contributor

bors commented May 26, 2021

📌 Commit 9ee87c7 has been approved by Dylan-DPC

@bors bors added the S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. label May 26, 2021
@bors
Copy link
Contributor

bors commented May 26, 2021

⌛ Testing commit 9ee87c7 with merge 50f2c6dde4972cf942dc9dbb8e498304b260a432...

@bors
Copy link
Contributor

bors commented May 26, 2021

💔 Test failed - checks-actions

@bors bors 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 May 26, 2021
@Dylan-DPC-zz
Copy link
Author

@bors retry

@bors bors 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 May 26, 2021
@rust-log-analyzer
Copy link
Collaborator

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

Click to see the possible cause of the failure (guessed by this bot)
+ set +x
Wed May 26 12:07:39 UTC 2021 - building ...
Wed May 26 12:08:09 UTC 2021 - building ...
Wed May 26 12:08:39 UTC 2021 - building ...
ERROR: An error was encountered with the build.
[INFO ]  Performing some trivial sanity checks
[INFO ]  Build started 20210526.120710
[INFO ]  Building environment variables
[WARN ]  Directory '/home/rustbuild/src' does not exist.
[WARN ]  Will not save downloaded tarballs to local storage.
[EXTRA]  Preparing working directories
[EXTRA]  Installing user-supplied crosstool-NG configuration
[EXTRA]  =================================================================
[EXTRA]  Dumping internal crosstool-NG configuration
[EXTRA]    Building a toolchain for:
[EXTRA]      build  = x86_64-pc-linux-gnu
[EXTRA]      host   = x86_64-pc-linux-gnu
[EXTRA]      target = riscv64-unknown-linux-gnu
[EXTRA]  Dumping internal crosstool-NG configuration: done in 0.05s (at 00:01)
[INFO ]  =================================================================
[INFO ]  Retrieving needed toolchain components' tarballs
[EXTRA]    Retrieving 'linux-4.20.8'
[ALL  ]    --2021-05-26 12:07:10--  http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving www.kernel.org (www.kernel.org)... 147.75.58.133, 2604:1380:4020:600::1
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:07:10--  https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:07:11--  https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving mirrors.edge.kernel.org (mirrors.edge.kernel.org)... 147.75.197.195, 2604:1380:1:3600::1
[ALL  ]    Connecting to mirrors.edge.kernel.org (mirrors.edge.kernel.org)|147.75.197.195|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 104281104 (99M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................  0% 8.96M 11s
[ALL  ]       384K ................ ................ ................  0% 44.3M 7s
[ALL  ]       768K ................ ................ ................  1%  112M 5s
[ALL  ]      1152K ................ ................ ................  1% 63.4M 4s
[ALL  ]      1536K ................ ................ ................  1%  131M 3s
[ALL  ]      1920K ................ ................ ................  2% 86.3M 3s
[ALL  ]      2304K ................ ................ ................  2%  269M 3s
[ALL  ]      2688K ................ ................ ................  3%  244M 2s
[ALL  ]      3072K ................ ................ ................  3%  260M 2s
[ALL  ]      3456K ................ ................ ................  3%  223M 2s
[ALL  ]      3840K ................ ................ ................  4%  246M 2s
[ALL  ]      4224K ................ ................ ................  4%  253M 2s
[ALL  ]      4608K ................ ................ ................  4%  251M 2s
[ALL  ]      4992K ................ ................ ................  5%  257M 1s
[ALL  ]      5376K ................ ................ ................  5%  270M 1s
[ALL  ]      5760K ................ ................ ................  6%  262M 1s
[ALL  ]      6144K ................ ................ ................  6%  215M 1s
[ALL  ]      6528K ................ ................ ................  6%  198M 1s
[ALL  ]      6912K ................ ................ ................  7%  271M 1s
[ALL  ]      7296K ................ ................ ................  7%  273M 1s
[ALL  ]      7680K ................ ................ ................  7%  284M 1s
[ALL  ]      8064K ................ ................ ................  8%  282M 1s
[ALL  ]      8448K ................ ................ ................  8%  288M 1s
[ALL  ]      8832K ................ ................ ................  9%  248M 1s
[ALL  ]      9216K ................ ................ ................  9%  266M 1s
[ALL  ]      9600K ................ ................ ................  9%  266M 1s
[ALL  ]      9984K ................ ................ ................ 10%  256M 1s
[ALL  ]     10368K ................ ................ ................ 10%  278M 1s
[ALL  ]     10752K ................ ................ ................ 10%  269M 1s
[ALL  ]     11136K ................ ................ ................ 11%  255M 1s
[ALL  ]     11520K ................ ................ ................ 11%  238M 1s
[ALL  ]     11904K ................ ................ ................ 12%  259M 1s
[ALL  ]     12288K ................ ................ ................ 12%  275M 1s
[ALL  ]     12672K ................ ................ ................ 12%  288M 1s
[ALL  ]     13056K ................ ................ ................ 13%  272M 1s
[ALL  ]     13440K ................ ................ ................ 13%  244M 1s
[ALL  ]     13824K ................ ................ ................ 13%  261M 1s
[ALL  ]     14208K ................ ................ ................ 14%  248M 1s
[ALL  ]     14592K ................ ................ ................ 14%  279M 1s
[ALL  ]     14976K ................ ................ ................ 15%  280M 1s
[ALL  ]     15360K ................ ................ ................ 15%  242M 1s
[ALL  ]     15744K ................ ................ ................ 15%  278M 1s
[ALL  ]     16128K ................ ................ ................ 16%  273M 1s
[ALL  ]     16512K ................ ................ ................ 16%  235M 1s
[ALL  ]     16896K ................ ................ ................ 16%  236M 1s
[ALL  ]     17280K ................ ................ ................ 17%  267M 1s
[ALL  ]     17664K ................ ................ ................ 17%  241M 1s
[ALL  ]     18048K ................ ................ ................ 18%  278M 1s
[ALL  ]     18432K ................ ................ ................ 18%  275M 1s
[ALL  ]     18816K ................ ................ ................ 18%  276M 1s
[ALL  ]     19200K ................ ................ ................ 19%  271M 1s
[ALL  ]     19584K ................ ................ ................ 19%  231M 1s
[ALL  ]     19968K ................ ................ ................ 19%  249M 1s
[ALL  ]     20352K ................ ................ ................ 20%  271M 1s
[ALL  ]     20736K ................ ................ ................ 20%  253M 1s
[ALL  ]     21120K ................ ................ ................ 21%  268M 1s
[ALL  ]     21504K ................ ................ ................ 21%  273M 1s
[ALL  ]     21888K ................ ................ ................ 21%  266M 1s
[ALL  ]     22272K ................ ................ ................ 22%  222M 1s
[ALL  ]     22656K ................ ................ ................ 22%  258M 0s
[ALL  ]     23040K ................ ................ ................ 23%  285M 0s
[ALL  ]     23424K ................ ................ ................ 23%  285M 0s
[ALL  ]     23808K ................ ................ ................ 23%  253M 0s
[ALL  ]     24192K ................ ................ ................ 24%  262M 0s
[ALL  ]     24576K ................ ................ ................ 24%  273M 0s
[ALL  ]     24960K ................ ................ ................ 24%  262M 0s
[ALL  ]     25344K ................ ................ ................ 25%  174M 0s
[ALL  ]     25728K ................ ................ ................ 25%  259M 0s
[ALL  ]     26112K ................ ................ ................ 26%  268M 0s
[ALL  ]     26496K ................ ................ ................ 26%  276M 0s
[ALL  ]     26880K ................ ................ ................ 26%  281M 0s
[ALL  ]     27264K ................ ................ ................ 27%  282M 0s
[ALL  ]     27648K ................ ................ ................ 27%  212M 0s
[ALL  ]     28032K ................ ................ ................ 27%  260M 0s
[ALL  ]     28416K ................ ................ ................ 28%  273M 0s
[ALL  ]     28800K ................ ................ ................ 28%  292M 0s
[ALL  ]     29184K ................ ................ ................ 29%  261M 0s
[ALL  ]     29568K ................ ................ ................ 29%  254M 0s
[ALL  ]     29952K ................ ................ ................ 29%  281M 0s
[ALL  ]     30336K ................ ................ ................ 30%  231M 0s
[ALL  ]     30720K ................ ................ ................ 30%  251M 0s
[ALL  ]     31104K ................ ................ ................ 30%  257M 0s
[ALL  ]     31488K ................ ................ ................ 31%  277M 0s
[ALL  ]     31872K ................ ................ ................ 31%  249M 0s
[ALL  ]     32256K ................ ................ ................ 32%  251M 0s
[ALL  ]     32640K ................ ................ ................ 32%  270M 0s
[ALL  ]     33024K ................ ................ ................ 32%  233M 0s
[ALL  ]     33408K ................ ................ ................ 33%  268M 0s
[ALL  ]     33792K ................ ................ ................ 33%  271M 0s
[ALL  ]     34176K ................ ................ ................ 33%  249M 0s
[ALL  ]     34560K ................ ................ ................ 34%  266M 0s
[ALL  ]     34944K ................ ................ ................ 34%  264M 0s
[ALL  ]     35328K ................ ................ ................ 35%  256M 0s
[ALL  ]     35712K ................ ................ ................ 35%  253M 0s
[ALL  ]     36096K ................ ................ ................ 35%  267M 0s
[ALL  ]     36480K ................ ................ ................ 36%  247M 0s
[ALL  ]     36864K ................ ................ ................ 36%  250M 0s
[ALL  ]     37248K ................ ................ ................ 36%  212M 0s
[ALL  ]     37632K ................ ................ ................ 37%  230M 0s
[ALL  ]     38016K ................ ................ ................ 37%  194M 0s
[ALL  ]     38400K ................ ................ ................ 38%  243M 0s
[ALL  ]     38784K ................ ................ ................ 38%  279M 0s
[ALL  ]     39168K ................ ................ ................ 38%  279M 0s
[ALL  ]     39552K ................ ................ ................ 39%  238M 0s
[ALL  ]     39936K ................ ................ ................ 39%  263M 0s
[ALL  ]     40320K ................ ................ ................ 39%  276M 0s
[ALL  ]     40704K ................ ................ ................ 40%  238M 0s
[ALL  ]     41088K ................ ................ ................ 40%  232M 0s
[ALL  ]     41472K ................ ................ ................ 41%  273M 0s
[ALL  ]     41856K ................ ................ ................ 41%  269M 0s
[ALL  ]     42240K ................ ................ ................ 41%  272M 0s
[ALL  ]     42624K ................ ................ ................ 42%  270M 0s
[ALL  ]     43008K ................ ................ ................ 42%  228M 0s
[ALL  ]     43392K ................ ................ ................ 42%  233M 0s
[ALL  ]     43776K ................ ................ ................ 43%  262M 0s
[ALL  ]     44160K ................ ................ ................ 43%  278M 0s
[ALL  ]     44544K ................ ................ ................ 44%  256M 0s
[ALL  ]     44928K ................ ................ ................ 44%  261M 0s
[ALL  ]     45312K ................ ................ ................ 44%  235M 0s
[ALL  ]     45696K ................ ................ ................ 45%  271M 0s
[ALL  ]     46080K ................ ................ ................ 45%  263M 0s
[ALL  ]     46464K ................ ................ ................ 46%  274M 0s
[ALL  ]     46848K ................ ................ ................ 46%  277M 0s
[ALL  ]     47232K ................ ................ ................ 46%  267M 0s
[ALL  ]     47616K ................ ................ ................ 47%  282M 0s
[ALL  ]     48000K ................ ................ ................ 47%  278M 0s
[ALL  ]     48384K ................ ................ ................ 47%  266M 0s
[ALL  ]     48768K ................ ................ ................ 48%  214M 0s
[ALL  ]     49152K ................ ................ ................ 48%  261M 0s
[ALL  ]     49536K ................ ................ ................ 49%  272M 0s
[ALL  ]     49920K ................ ................ ................ 49%  240M 0s
[ALL  ]     50304K ................ ................ ................ 49%  264M 0s
[ALL  ]     50688K ................ ................ ................ 50%  282M 0s
[ALL  ]     51072K ................ ................ ................ 50%  285M 0s
[ALL  ]     51456K ................ ................ ................ 50%  253M 0s
[ALL  ]     51840K ................ ................ ................ 51%  240M 0s
[ALL  ]     52224K ................ ................ ................ 51%  244M 0s
[ALL  ]     52608K ................ ................ ................ 52%  268M 0s
[ALL  ]     52992K ................ ................ ................ 52%  286M 0s
[ALL  ]     53376K ................ ................ ................ 52%  275M 0s
[ALL  ]     53760K ................ ................ ................ 53%  244M 0s
[ALL  ]     54144K ................ ................ ................ 53%  187M 0s
[ALL  ]     54528K ................ ................ ................ 53%  250M 0s
[ALL  ]     54912K ................ ................ ................ 54%  280M 0s
[ALL  ]     55296K ................ ................ ................ 54%  269M 0s
[ALL  ]     55680K ................ ................ ................ 55%  245M 0s
[ALL  ]     56064K ................ ................ ................ 55%  270M 0s
[ALL  ]     56448K ................ ................ ................ 55%  252M 0s
[ALL  ]     56832K ................ ................ ................ 56%  222M 0s
[ALL  ]     57216K ................ ................ ................ 56%  250M 0s
[ALL  ]     57600K ................ ................ ................ 56%  265M 0s
[ALL  ]     57984K ................ ................ ................ 57%  258M 0s
[ALL  ]     58368K ................ ................ ................ 57%  265M 0s
[ALL  ]     58752K ................ ................ ................ 58%  230M 0s
[ALL  ]     59136K ................ ................ ................ 58%  241M 0s
[ALL  ]     59520K ................ ................ ................ 58%  275M 0s
[ALL  ]     59904K ................ ................ ................ 59%  278M 0s
[ALL  ]     60288K ................ ................ ................ 59%  280M 0s
[ALL  ]     60672K ................ ................ ................ 59%  272M 0s
[ALL  ]     61056K ................ ................ ................ 60%  248M 0s
[ALL  ]     61440K ................ ................ ................ 60%  287M 0s
[ALL  ]     61824K ................ ................ ................ 61%  230M 0s
[ALL  ]     62208K ................ ................ ................ 61%  273M 0s
[ALL  ]     62592K ................ ................ ................ 61%  278M 0s
[ALL  ]     62976K ................ ................ ................ 62%  247M 0s
[ALL  ]     63360K ................ ................ ................ 62%  273M 0s
[ALL  ]     63744K ................ ................ ................ 62%  273M 0s
[ALL  ]     64128K ................ ................ ................ 63%  279M 0s
[ALL  ]     64512K ................ ................ ................ 63%  212M 0s
[ALL  ]     64896K ................ ................ ................ 64%  252M 0s
[ALL  ]     65280K ................ ................ ................ 64%  266M 0s
[ALL  ]     65664K ................ ................ ................ 64%  271M 0s
[ALL  ]     66048K ................ ................ ................ 65%  264M 0s
[ALL  ]     66432K ................ ................ ................ 65%  277M 0s
[ALL  ]     66816K ................ ................ ................ 65%  269M 0s
[ALL  ]     67200K ................ ................ ................ 66%  230M 0s
[ALL  ]     67584K ................ ................ ................ 66%  255M 0s
[ALL  ]     67968K ................ ................ ................ 67%  282M 0s
[ALL  ]     68352K ................ ................ ................ 67%  288M 0s
[ALL  ]     68736K ................ ................ ................ 67%  234M 0s
[ALL  ]     69120K ................ ................ ................ 68%  272M 0s
[ALL  ]     69504K ................ ................ ................ 68%  229M 0s
[ALL  ]     69888K ................ ................ ................ 69%  239M 0s
[ALL  ]     70272K ................ ................ ................ 69%  278M 0s
[ALL  ]     70656K ................ ................ ................ 69%  275M 0s
[ALL  ]     71040K ................ ................ ................ 70%  268M 0s
[ALL  ]     71424K ................ ................ ................ 70%  287M 0s
[ALL  ]     71808K ................ ................ ................ 70%  258M 0s
[ALL  ]     72192K ................ ................ ................ 71%  261M 0s
[ALL  ]     72576K ................ ................ ................ 71%  235M 0s
[ALL  ]     72960K ................ ................ ................ 72%  240M 0s
[ALL  ]     73344K ................ ................ ................ 72%  227M 0s
[ALL  ]     73728K ................ ................ ................ 72%  229M 0s
[ALL  ]     74112K ................ ................ ................ 73%  253M 0s
[ALL  ]     74496K ................ ................ ................ 73%  292M 0s
[ALL  ]     74880K ................ ................ ................ 73%  286M 0s
[ALL  ]     75264K ................ ................ ................ 74%  203M 0s
[ALL  ]     75648K ................ ................ ................ 74%  236M 0s
[ALL  ]     76032K ................ ................ ................ 75%  220M 0s
[ALL  ]     76416K ................ ................ ................ 75%  276M 0s
[ALL  ]     76800K ................ ................ ................ 75%  281M 0s
[ALL  ]     77184K ................ ................ ................ 76%  259M 0s
[ALL  ]     77568K ................ ................ ................ 76%  254M 0s
[ALL  ]     77952K ................ ................ ................ 76%  247M 0s
[ALL  ]     78336K ................ ................ ................ 77%  234M 0s
[ALL  ]     78720K ................ ................ ................ 77%  250M 0s
[ALL  ]     79104K ................ ................ ................ 78%  257M 0s
[ALL  ]     79488K ................ ................ ................ 78%  260M 0s
[ALL  ]     79872K ................ ................ ................ 78%  273M 0s
[ALL  ]     80256K ................ ................ ................ 79%  241M 0s
[ALL  ]     80640K ................ ................ ................ 79%  274M 0s
[ALL  ]     81024K ................ ................ ................ 79%  248M 0s
[ALL  ]     81408K ................ ................ ................ 80%  227M 0s
[ALL  ]     81792K ................ ................ ................ 80%  263M 0s
[ALL  ]     82176K ................ ................ ................ 81%  253M 0s
[ALL  ]     82560K ................ ................ ................ 81%  262M 0s
[ALL  ]     82944K ................ ................ ................ 81%  253M 0s
[ALL  ]     83328K ................ ................ ................ 82%  264M 0s
[ALL  ]     83712K ................ ................ ................ 82%  258M 0s
[ALL  ]     84096K ................ ................ ................ 82%  276M 0s
[ALL  ]     84480K ................ ................ ................ 83%  260M 0s
[ALL  ]     84864K ................ ................ ................ 83%  268M 0s
[ALL  ]     85248K ................ ................ ................ 84%  288M 0s
[ALL  ]     85632K ................ ................ ................ 84%  226M 0s
[ALL  ]     86016K ................ ................ ................ 84%  274M 0s
[ALL  ]     86400K ................ ................ ................ 85%  253M 0s
[ALL  ]     86784K ................ ................ ................ 85%  242M 0s
[ALL  ]     87168K ................ ................ ................ 85%  280M 0s
[ALL  ]     87552K ................ ................ ................ 86%  292M 0s
[ALL  ]     87936K ................ ................ ................ 86%  272M 0s
[ALL  ]     88320K ................ ................ ................ 87%  237M 0s
[ALL  ]     88704K ................ ................ ................ 87%  237M 0s
[ALL  ]     89088K ................ ................ ................ 87%  262M 0s
[ALL  ]     89472K ................ ................ ................ 88%  275M 0s
[ALL  ]     89856K ................ ................ ................ 88%  257M 0s
[ALL  ]     90240K ................ ................ ................ 88%  261M 0s
[ALL  ]     90624K ................ ................ ................ 89%  263M 0s
[ALL  ]     91008K ................ ................ ................ 89%  211M 0s
[ALL  ]     91392K ................ ................ ................ 90%  236M 0s
[ALL  ]     91776K ................ ................ ................ 90%  236M 0s
[ALL  ]     92160K ................ ................ ................ 90%  294M 0s
[ALL  ]     92544K ................ ................ ................ 91%  281M 0s
[ALL  ]     92928K ................ ................ ................ 91%  242M 0s
[ALL  ]     93312K ................ ................ ................ 92%  258M 0s
[ALL  ]     93696K ................ ................ ................ 92%  247M 0s
[ALL  ]     94080K ................ ................ ................ 92%  264M 0s
[ALL  ]     94464K ................ ................ ................ 93%  279M 0s
[ALL  ]     94848K ................ ................ ................ 93%  261M 0s
[ALL  ]     95232K ................ ................ ................ 93%  271M 0s
[ALL  ]     95616K ................ ................ ................ 94%  281M 0s
[ALL  ]     96000K ................ ................ ................ 94%  270M 0s
[ALL  ]     96384K ................ ................ ................ 95%  220M 0s
[ALL  ]     96768K ................ ................ ................ 95%  256M 0s
[ALL  ]     97152K ................ ................ ................ 95%  274M 0s
[ALL  ]     97536K ................ ................ ................ 96%  265M 0s
[ALL  ]     97920K ................ ................ ................ 96%  273M 0s
[ALL  ]     98304K ................ ................ ................ 96%  273M 0s
[ALL  ]     98688K ................ ................ ................ 97%  274M 0s
[ALL  ]     99072K ................ ................ ................ 97%  222M 0s
[ALL  ]     99456K ................ ................ ................ 98%  269M 0s
[ALL  ]     99840K ................ ................ ................ 98%  287M 0s
[ALL  ]    100224K ................ ................ ................ 98%  282M 0s
[ALL  ]    100608K ................ ................ ................ 99%  280M 0s
[ALL  ]    100992K ................ ................ ................ 99%  289M 0s
[ALL  ]    101376K ................ ................ ................ 99%  287M 0s
[ALL  ]    101760K .........                                         100%  300M=0.4s
[ALL  ]    
[ALL  ]    2021-05-26 12:07:11 (223 MB/s) - '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl' saved [104281104/104281104]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'linux-4.20.8.tar.xz'
[EXTRA]    Retrieving 'zlib-1.2.11'
[ALL  ]    --2021-05-26 12:07:11--  http://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.105.38.13
[ALL  ]    Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.105.38.13|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 302 Found
[ALL  ]    Location: https://phoenixnap.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz [following]
[ALL  ]    --2021-05-26 12:07:12--  https://phoenixnap.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving phoenixnap.dl.sourceforge.net (phoenixnap.dl.sourceforge.net)... 184.164.141.26
[ALL  ]    Connecting to phoenixnap.dl.sourceforge.net (phoenixnap.dl.sourceforge.net)|184.164.141.26|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 467960 (457K) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 84% 1.62M 0s
[ALL  ]       384K .........                                         100%  203M=0.2s
[ALL  ]    
[ALL  ]    2021-05-26 12:07:12 (1.93 MB/s) - '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl' saved [467960/467960]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'zlib-1.2.11.tar.xz'
[EXTRA]    Retrieving 'gmp-6.1.2'
[ALL  ]    --2021-05-26 12:07:12--  https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz
[ALL  ]    Resolving gmplib.org (gmplib.org)... 130.242.124.102
[ALL  ]    Connecting to gmplib.org (gmplib.org)|130.242.124.102|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1946336 (1.9M) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 20%  400K 4s
[ALL  ]       384K ................ ................ ................ 40% 1.16M 2s
[ALL  ]       768K ................ ................ ................ 60% 3.49M 1s
[ALL  ]      1152K ................ ................ ................ 80% 3.48M 0s
[ALL  ]      1536K ................ ................ .............   100% 97.5M=1.5s
[ALL  ]    
[ALL  ]    2021-05-26 12:07:15 (1.24 MB/s) - '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl' saved [1946336/1946336]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'gmp-6.1.2.tar.xz'
[EXTRA]    Retrieving 'mpfr-4.0.2'
[ALL  ]    --2021-05-26 12:07:15--  http://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Resolving www.mpfr.org (www.mpfr.org)... 152.81.144.155
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz [following]
[ALL  ]    --2021-05-26 12:07:15--  https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1441996 (1.4M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 27%  893K 1s
[ALL  ]       384K ................ ................ ................ 54%  115M 0s
[ALL  ]       768K ................ ................ ................ 81% 4.37M 0s
[ALL  ]      1152K ................ ................                 100% 2.84M=0.6s
[ALL  ]    
[ALL  ]    2021-05-26 12:07:16 (2.27 MB/s) - '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl' saved [1441996/1441996]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'mpfr-4.0.2.tar.xz'
[EXTRA]    Retrieving 'isl-0.20'
[ALL  ]    --2021-05-26 12:07:16--  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:07:27--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:07:40--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:07:54--  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:08:06--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:08:18--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:08:31--  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:08:42--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:08:54--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ERROR]    isl: download failed
[ERROR]  
[ERROR]  >>
[ERROR]  >>  Build failed in step 'Retrieving needed toolchain components' tarballs'
[ERROR]  >>        called in step '(top-level)'
[ERROR]  >>
[ERROR]  >>  Error happened in: CT_Abort[scripts/functions@487]
[ERROR]  >>        called from: CT_DoFetch[scripts/functions@2103]
[ERROR]  >>        called from: CT_PackageRun[scripts/functions@2063]
[ERROR]  >>        called from: CT_Fetch[scripts/functions@2174]
[ERROR]  >>        called from: do_isl_get[scripts/build/companion_libs/121-isl.sh@16]
[ERROR]  >>        called from: do_companion_libs_get[scripts/build/companion_libs.sh@15]
[ERROR]  >>        called from: main[scripts/crosstool-NG.sh@648]
[ERROR]  >>
[ERROR]  >>  For more info on this error, look at the file: 'build.log'
[ERROR]  >>  There is a list of known issues, some with workarounds, in:
[ERROR]  >>      https://crosstool-ng.github.io/docs/known-issues/
[ERROR]  >>
[ERROR]  >> NOTE: Your configuration includes features marked EXPERIMENTAL.
[ERROR]  >> Before submitting a bug report, try to reproduce it without enabling
[ERROR]  >> any experimental features. Otherwise, you'll need to debug it
[ERROR]  >> and present an explanation why it is a bug in crosstool-NG - or
[ERROR]  >> preferably, a fix.
[ERROR]  >>
[ERROR]  >>  If you feel this is a bug in crosstool-NG, report it at:
[ERROR]  >>      https://github.com/crosstool-ng/crosstool-ng/issues/
[ERROR]  >>
[ERROR]  >>  Make sure your report includes all the information pertinent to this issue.
[ERROR]  >>  Read the bug reporting guidelines here:
[ERROR]  >>      http://crosstool-ng.github.io/support/
[ERROR]  
[ERROR]  (elapsed: 1:54.69)
/usr/local/bin/ct-ng:261: recipe for target 'build' failed
make: *** [build] Error 1
The command '/bin/sh -c ./build-toolchains.sh' returned a non-zero code: 1
Sending build context to Docker daemon  494.6kB

Step 1/21 : FROM ubuntu:18.04
 ---> 81bcf752ac3d
---
Wed May 26 12:09:36 UTC 2021 - building ...
Wed May 26 12:10:06 UTC 2021 - building ...
Wed May 26 12:10:36 UTC 2021 - building ...
Wed May 26 12:11:06 UTC 2021 - building ...
ERROR: An error was encountered with the build.
[INFO ]  Performing some trivial sanity checks
[INFO ]  Build started 20210526.120907
[INFO ]  Building environment variables
[WARN ]  Directory '/home/rustbuild/src' does not exist.
[WARN ]  Will not save downloaded tarballs to local storage.
[EXTRA]  Preparing working directories
[EXTRA]  Installing user-supplied crosstool-NG configuration
[EXTRA]  =================================================================
[EXTRA]  Dumping internal crosstool-NG configuration
[EXTRA]    Building a toolchain for:
[EXTRA]      build  = x86_64-pc-linux-gnu
[EXTRA]      host   = x86_64-pc-linux-gnu
[EXTRA]      target = riscv64-unknown-linux-gnu
[EXTRA]  Dumping internal crosstool-NG configuration: done in 0.05s (at 00:01)
[INFO ]  =================================================================
[INFO ]  Retrieving needed toolchain components' tarballs
[EXTRA]    Retrieving 'linux-4.20.8'
[ALL  ]    --2021-05-26 12:09:08--  http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving www.kernel.org (www.kernel.org)... 147.75.58.133, 2604:1380:4020:600::1
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:09:08--  https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:09:08--  https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving mirrors.edge.kernel.org (mirrors.edge.kernel.org)... 147.75.197.195, 2604:1380:1:3600::1
[ALL  ]    Connecting to mirrors.edge.kernel.org (mirrors.edge.kernel.org)|147.75.197.195|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 104281104 (99M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................  0% 10.8M 9s
[ALL  ]       384K ................ ................ ................  0% 36.2M 6s
[ALL  ]       768K ................ ................ ................  1% 46.7M 5s
[ALL  ]      1152K ................ ................ ................  1%  156M 4s
[ALL  ]      1536K ................ ................ ................  1% 62.8M 3s
[ALL  ]      1920K ................ ................ ................  2%  214M 3s
[ALL  ]      2304K ................ ................ ................  2%  209M 2s
[ALL  ]      2688K ................ ................ ................  3%  230M 2s
[ALL  ]      3072K ................ ................ ................  3%  209M 2s
[ALL  ]      3456K ................ ................ ................  3%  215M 2s
[ALL  ]      3840K ................ ................ ................  4%  160M 2s
[ALL  ]      4224K ................ ................ ................  4%  242M 2s
[ALL  ]      4608K ................ ................ ................  4%  217M 1s
[ALL  ]      4992K ................ ................ ................  5%  243M 1s
[ALL  ]      5376K ................ ................ ................  5%  244M 1s
[ALL  ]      5760K ................ ................ ................  6%  233M 1s
[ALL  ]      6144K ................ ................ ................  6%  259M 1s
[ALL  ]      6528K ................ ................ ................  6%  242M 1s
[ALL  ]      6912K ................ ................ ................  7%  235M 1s
[ALL  ]      7296K ................ ................ ................  7%  255M 1s
[ALL  ]      7680K ................ ................ ................  7%  258M 1s
[ALL  ]      8064K ................ ................ ................  8%  240M 1s
[ALL  ]      8448K ................ ................ ................  8%  258M 1s
[ALL  ]      8832K ................ ................ ................  9%  245M 1s
[ALL  ]      9216K ................ ................ ................  9%  252M 1s
[ALL  ]      9600K ................ ................ ................  9%  187M 1s
[ALL  ]      9984K ................ ................ ................ 10%  227M 1s
[ALL  ]     10368K ................ ................ ................ 10%  238M 1s
[ALL  ]     10752K ................ ................ ................ 10%  249M 1s
[ALL  ]     11136K ................ ................ ................ 11%  259M 1s
[ALL  ]     11520K ................ ................ ................ 11%  222M 1s
[ALL  ]     11904K ................ ................ ................ 12%  244M 1s
[ALL  ]     12288K ................ ................ ................ 12%  273M 1s
[ALL  ]     12672K ................ ................ ................ 12%  243M 1s
[ALL  ]     13056K ................ ................ ................ 13%  267M 1s
[ALL  ]     13440K ................ ................ ................ 13%  268M 1s
[ALL  ]     13824K ................ ................ ................ 13%  267M 1s
[ALL  ]     14208K ................ ................ ................ 14%  270M 1s
[ALL  ]     14592K ................ ................ ................ 14%  230M 1s
[ALL  ]     14976K ................ ................ ................ 15%  266M 1s
[ALL  ]     15360K ................ ................ ................ 15%  268M 1s
[ALL  ]     15744K ................ ................ ................ 15%  246M 1s
[ALL  ]     16128K ................ ................ ................ 16%  246M 1s
[ALL  ]     16512K ................ ................ ................ 16%  252M 1s
[ALL  ]     16896K ................ ................ ................ 16%  262M 1s
[ALL  ]     17280K ................ ................ ................ 17%  244M 1s
[ALL  ]     17664K ................ ................ ................ 17%  271M 1s
[ALL  ]     18048K ................ ................ ................ 18%  250M 1s
[ALL  ]     18432K ................ ................ ................ 18%  259M 1s
[ALL  ]     18816K ................ ................ ................ 18%  252M 1s
[ALL  ]     19200K ................ ................ ................ 19%  266M 1s
[ALL  ]     19584K ................ ................ ................ 19%  271M 1s
[ALL  ]     19968K ................ ................ ................ 19%  233M 1s
[ALL  ]     20352K ................ ................ ................ 20%  268M 1s
[ALL  ]     20736K ................ ................ ................ 20%  247M 1s
[ALL  ]     21120K ................ ................ ................ 21%  243M 1s
[ALL  ]     21504K ................ ................ ................ 21%  266M 1s
[ALL  ]     21888K ................ ................ ................ 21%  270M 1s
[ALL  ]     22272K ................ ................ ................ 22%  259M 1s
[ALL  ]     22656K ................ ................ ................ 22%  246M 1s
[ALL  ]     23040K ................ ................ ................ 23%  247M 0s
[ALL  ]     23424K ................ ................ ................ 23%  270M 0s
[ALL  ]     23808K ................ ................ ................ 23%  263M 0s
[ALL  ]     24192K ................ ................ ................ 24%  254M 0s
[ALL  ]     24576K ................ ................ ................ 24%  263M 0s
[ALL  ]     24960K ................ ................ ................ 24%  260M 0s
[ALL  ]     25344K ................ ................ ................ 25%  232M 0s
[ALL  ]     25728K ................ ................ ................ 25%  251M 0s
[ALL  ]     26112K ................ ................ ................ 26%  272M 0s
[ALL  ]     26496K ................ ................ ................ 26%  279M 0s
[ALL  ]     26880K ................ ................ ................ 26%  293M 0s
[ALL  ]     27264K ................ ................ ................ 27%  288M 0s
[ALL  ]     27648K ................ ................ ................ 27%  258M 0s
[ALL  ]     28032K ................ ................ ................ 27%  258M 0s
[ALL  ]     28416K ................ ................ ................ 28%  280M 0s
[ALL  ]     28800K ................ ................ ................ 28%  276M 0s
[ALL  ]     29184K ................ ................ ................ 29%  271M 0s
[ALL  ]     29568K ................ ................ ................ 29%  265M 0s
[ALL  ]     29952K ................ ................ ................ 29%  268M 0s
[ALL  ]     30336K ................ ................ ................ 30%  276M 0s
[ALL  ]     30720K ................ ................ ................ 30%  218M 0s
[ALL  ]     31104K ................ ................ ................ 30%  259M 0s
[ALL  ]     31488K ................ ................ ................ 31%  268M 0s
[ALL  ]     31872K ................ ................ ................ 31%  247M 0s
[ALL  ]     32256K ................ ................ ................ 32%  274M 0s
[ALL  ]     32640K ................ ................ ................ 32%  269M 0s
[ALL  ]     33024K ................ ................ ................ 32%  234M 0s
[ALL  ]     33408K ................ ................ ................ 33%  237M 0s
[ALL  ]     33792K ................ ................ ................ 33%  260M 0s
[ALL  ]     34176K ................ ................ ................ 33%  275M 0s
[ALL  ]     34560K ................ ................ ................ 34%  255M 0s
[ALL  ]     34944K ................ ................ ................ 34%  256M 0s
[ALL  ]     35328K ................ ................ ................ 35%  258M 0s
[ALL  ]     35712K ................ ................ ................ 35%  255M 0s
[ALL  ]     36096K ................ ................ ................ 35% 66.6M 0s
[ALL  ]     36480K ................ ................ ................ 36%  264M 0s
[ALL  ]     36864K ................ ................ ................ 36%  247M 0s
[ALL  ]     37248K ................ ................ ................ 36%  260M 0s
[ALL  ]     37632K ................ ................ ................ 37%  259M 0s
[ALL  ]     38016K ................ ................ ................ 37%  258M 0s
[ALL  ]     38400K ................ ................ ................ 38%  239M 0s
[ALL  ]     38784K ................ ................ ................ 38%  253M 0s
[ALL  ]     39168K ................ ................ ................ 38%  249M 0s
[ALL  ]     39552K ................ ................ ................ 39%  247M 0s
[ALL  ]     39936K ................ ................ ................ 39%  238M 0s
[ALL  ]     40320K ................ ................ ................ 39%  230M 0s
[ALL  ]     40704K ................ ................ ................ 40%  239M 0s
[ALL  ]     41088K ................ ................ ................ 40%  242M 0s
[ALL  ]     41472K ................ ................ ................ 41%  256M 0s
[ALL  ]     41856K ................ ................ ................ 41%  260M 0s
[ALL  ]     42240K ................ ................ ................ 41%  255M 0s
[ALL  ]     42624K ................ ................ ................ 42%  235M 0s
[ALL  ]     43008K ................ ................ ................ 42%  236M 0s
[ALL  ]     43392K ................ ................ ................ 42%  249M 0s
[ALL  ]     43776K ................ ................ ................ 43%  262M 0s
[ALL  ]     44160K ................ ................ ................ 43%  255M 0s
[ALL  ]     44544K ................ ................ ................ 44%  271M 0s
[ALL  ]     44928K ................ ................ ................ 44%  255M 0s
[ALL  ]     45312K ................ ................ ................ 44%  217M 0s
[ALL  ]     45696K ................ ................ ................ 45%  270M 0s
[ALL  ]     46080K ................ ................ ................ 45%  255M 0s
[ALL  ]     46464K ................ ................ ................ 46%  243M 0s
[ALL  ]     46848K ................ ................ ................ 46%  253M 0s
[ALL  ]     47232K ................ ................ ................ 46%  220M 0s
[ALL  ]     47616K ................ ................ ................ 47%  232M 0s
[ALL  ]     48000K ................ ................ ................ 47%  256M 0s
[ALL  ]     48384K ................ ................ ................ 47%  251M 0s
[ALL  ]     48768K ................ ................ ................ 48%  257M 0s
[ALL  ]     49152K ................ ................ ................ 48%  263M 0s
[ALL  ]     49536K ................ ................ ................ 49%  250M 0s
[ALL  ]     49920K ................ ................ ................ 49%  256M 0s
[ALL  ]     50304K ................ ................ ................ 49%  214M 0s
[ALL  ]     50688K ................ ................ ................ 50%  248M 0s
[ALL  ]     51072K ................ ................ ................ 50%  258M 0s
[ALL  ]     51456K ................ ................ ................ 50%  259M 0s
[ALL  ]     51840K ................ ................ ................ 51%  249M 0s
[ALL  ]     52224K ................ ................ ................ 51%  227M 0s
[ALL  ]     52608K ................ ................ ................ 52%  235M 0s
[ALL  ]     52992K ................ ................ ................ 52%  238M 0s
[ALL  ]     53376K ................ ................ ................ 52%  258M 0s
[ALL  ]     53760K ................ ................ ................ 53%  255M 0s
[ALL  ]     54144K ................ ................ ................ 53%  267M 0s
[ALL  ]     54528K ................ ................ ................ 53%  250M 0s
[ALL  ]     54912K ................ ................ ................ 54%  268M 0s
[ALL  ]     55296K ................ ................ ................ 54%  235M 0s
[ALL  ]     55680K ................ ................ ................ 55%  215M 0s
[ALL  ]     56064K ................ ................ ................ 55%  229M 0s
[ALL  ]     56448K ................ ................ ................ 55%  278M 0s
[ALL  ]     56832K ................ ................ ................ 56%  242M 0s
[ALL  ]     57216K ................ ................ ................ 56%  267M 0s
[ALL  ]     57600K ................ ................ ................ 56%  272M 0s
[ALL  ]     57984K ................ ................ ................ 57%  252M 0s
[ALL  ]     58368K ................ ................ ................ 57%  260M 0s
[ALL  ]     58752K ................ ................ ................ 58%  246M 0s
[ALL  ]     59136K ................ ................ ................ 58%  244M 0s
[ALL  ]     59520K ................ ................ ................ 58%  256M 0s
[ALL  ]     59904K ................ ................ ................ 59%  261M 0s
[ALL  ]     60288K ................ ................ ................ 59%  257M 0s
[ALL  ]     60672K ................ ................ ................ 59%  216M 0s
[ALL  ]     61056K ................ ................ ................ 60%  280M 0s
[ALL  ]     61440K ................ ................ ................ 60%  263M 0s
[ALL  ]     61824K ................ ................ ................ 61%  283M 0s
[ALL  ]     62208K ................ ................ ................ 61%  270M 0s
[ALL  ]     62592K ................ ................ ................ 61%  248M 0s
[ALL  ]     62976K ................ ................ ................ 62%  293M 0s
[ALL  ]     63360K ................ ................ ................ 62%  267M 0s
[ALL  ]     63744K ................ ................ ................ 62%  259M 0s
[ALL  ]     64128K ................ ................ ................ 63%  191M 0s
[ALL  ]     64512K ................ ................ ................ 63%  259M 0s
[ALL  ]     64896K ................ ................ ................ 64%  266M 0s
[ALL  ]     65280K ................ ................ ................ 64%  260M 0s
[ALL  ]     65664K ................ ................ ................ 64%  221M 0s
[ALL  ]     66048K ................ ................ ................ 65%  255M 0s
[ALL  ]     66432K ................ ................ ................ 65%  246M 0s
[ALL  ]     66816K ................ ................ ................ 65%  256M 0s
[ALL  ]     67200K ................ ................ ................ 66%  263M 0s
[ALL  ]     67584K ................ ................ ................ 66%  292M 0s
[ALL  ]     67968K ................ ................ ................ 67%  267M 0s
[ALL  ]     68352K ................ ................ ................ 67%  261M 0s
[ALL  ]     68736K ................ ................ ................ 67%  282M 0s
[ALL  ]     69120K ................ ................ ................ 68%  252M 0s
[ALL  ]     69504K ................ ................ ................ 68%  276M 0s
[ALL  ]     69888K ................ ................ ................ 69%  273M 0s
[ALL  ]     70272K ................ ................ ................ 69%  260M 0s
[ALL  ]     70656K ................ ................ ................ 69%  266M 0s
[ALL  ]     71040K ................ ................ ................ 70%  268M 0s
[ALL  ]     71424K ................ ................ ................ 70%  215M 0s
[ALL  ]     71808K ................ ................ ................ 70%  258M 0s
[ALL  ]     72192K ................ ................ ................ 71%  273M 0s
[ALL  ]     72576K ................ ................ ................ 71%  266M 0s
[ALL  ]     72960K ................ ................ ................ 72%  255M 0s
[ALL  ]     73344K ................ ................ ................ 72%  291M 0s
[ALL  ]     73728K ................ ................ ................ 72%  276M 0s
[ALL  ]     74112K ................ ................ ................ 73%  245M 0s
[ALL  ]     74496K ................ ................ ................ 73%  241M 0s
[ALL  ]     74880K ................ ................ ................ 73%  242M 0s
[ALL  ]     75264K ................ ................ ................ 74%  263M 0s
[ALL  ]     75648K ................ ................ ................ 74%  254M 0s
[ALL  ]     76032K ................ ................ ................ 75%  216M 0s
[ALL  ]     76416K ................ ................ ................ 75%  243M 0s
[ALL  ]     76800K ................ ................ ................ 75%  275M 0s
[ALL  ]     77184K ................ ................ ................ 76%  239M 0s
[ALL  ]     77568K ................ ................ ................ 76%  228M 0s
[ALL  ]     77952K ................ ................ ................ 76%  255M 0s
[ALL  ]     78336K ................ ................ ................ 77%  266M 0s
[ALL  ]     78720K ................ ................ ................ 77%  252M 0s
[ALL  ]     79104K ................ ................ ................ 78%  239M 0s
[ALL  ]     79488K ................ ................ ................ 78%  270M 0s
[ALL  ]     79872K ................ ................ ................ 78%  248M 0s
[ALL  ]     80256K ................ ................ ................ 79%  262M 0s
[ALL  ]     80640K ................ ................ ................ 79%  261M 0s
[ALL  ]     81024K ................ ................ ................ 79%  276M 0s
[ALL  ]     81408K ................ ................ ................ 80%  261M 0s
[ALL  ]     81792K ................ ................ ................ 80%  233M 0s
[ALL  ]     82176K ................ ................ ................ 81%  261M 0s
[ALL  ]     82560K ................ ................ ................ 81%  261M 0s
[ALL  ]     82944K ................ ................ ................ 81%  243M 0s
[ALL  ]     83328K ................ ................ ................ 82%  251M 0s
[ALL  ]     83712K ................ ................ ................ 82%  262M 0s
[ALL  ]     84096K ................ ................ ................ 82%  273M 0s
[ALL  ]     84480K ................ ................ ................ 83%  241M 0s
[ALL  ]     84864K ................ ................ ................ 83%  270M 0s
[ALL  ]     85248K ................ ................ ................ 84%  265M 0s
[ALL  ]     85632K ................ ................ ................ 84%  252M 0s
[ALL  ]     86016K ................ ................ ................ 84%  252M 0s
[ALL  ]     86400K ................ ................ ................ 85%  268M 0s
[ALL  ]     86784K ................ ................ ................ 85%  277M 0s
[ALL  ]     87168K ................ ................ ................ 85%  133M 0s
[ALL  ]     87552K ................ ................ ................ 86%  219M 0s
[ALL  ]     87936K ................ ................ ................ 86%  276M 0s
[ALL  ]     88320K ................ ................ ................ 87%  255M 0s
[ALL  ]     88704K ................ ................ ................ 87%  195M 0s
[ALL  ]     89088K ................ ................ ................ 87%  209M 0s
[ALL  ]     89472K ................ ................ ................ 88%  275M 0s
[ALL  ]     89856K ................ ................ ................ 88%  268M 0s
[ALL  ]     90240K ................ ................ ................ 88%  261M 0s
[ALL  ]     90624K ................ ................ ................ 89%  283M 0s
[ALL  ]     91008K ................ ................ ................ 89%  257M 0s
[ALL  ]     91392K ................ ................ ................ 90%  234M 0s
[ALL  ]     91776K ................ ................ ................ 90%  243M 0s
[ALL  ]     92160K ................ ................ ................ 90%  260M 0s
[ALL  ]     92544K ................ ................ ................ 91%  235M 0s
[ALL  ]     92928K ................ ................ ................ 91%  275M 0s
[ALL  ]     93312K ................ ................ ................ 92%  276M 0s
[ALL  ]     93696K ................ ................ ................ 92%  286M 0s
[ALL  ]     94080K ................ ................ ................ 92%  266M 0s
[ALL  ]     94464K ................ ................ ................ 93%  220M 0s
[ALL  ]     94848K ................ ................ ................ 93%  261M 0s
[ALL  ]     95232K ................ ................ ................ 93%  271M 0s
[ALL  ]     95616K ................ ................ ................ 94%  252M 0s
[ALL  ]     96000K ................ ................ ................ 94%  260M 0s
[ALL  ]     96384K ................ ................ ................ 95%  239M 0s
[ALL  ]     96768K ................ ................ ................ 95%  254M 0s
[ALL  ]     97152K ................ ................ ................ 95%  221M 0s
[ALL  ]     97536K ................ ................ ................ 96%  257M 0s
[ALL  ]     97920K ................ ................ ................ 96%  217M 0s
[ALL  ]     98304K ................ ................ ................ 96%  258M 0s
[ALL  ]     98688K ................ ................ ................ 97%  241M 0s
[ALL  ]     99072K ................ ................ ................ 97%  276M 0s
[ALL  ]     99456K ................ ................ ................ 98%  278M 0s
[ALL  ]     99840K ................ ................ ................ 98%  231M 0s
[ALL  ]    100224K ................ ................ ................ 98%  295M 0s
[ALL  ]    100608K ................ ................ ................ 99%  272M 0s
[ALL  ]    100992K ................ ................ ................ 99%  298M 0s
[ALL  ]    101376K ................ ................ ................ 99%  305M 0s
[ALL  ]    101760K .........                                         100%  337M=0.5s
[ALL  ]    
[ALL  ]    2021-05-26 12:09:08 (219 MB/s) - '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl' saved [104281104/104281104]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'linux-4.20.8.tar.xz'
[EXTRA]    Retrieving 'zlib-1.2.11'
[ALL  ]    --2021-05-26 12:09:09--  http://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.105.38.13
[ALL  ]    Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.105.38.13|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 302 Found
[ALL  ]    Location: https://pilotfiber.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz [following]
[ALL  ]    --2021-05-26 12:09:09--  https://pilotfiber.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving pilotfiber.dl.sourceforge.net (pilotfiber.dl.sourceforge.net)... 69.12.26.12
[ALL  ]    Connecting to pilotfiber.dl.sourceforge.net (pilotfiber.dl.sourceforge.net)|69.12.26.12|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 467960 (457K) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 84% 3.92M 0s
[ALL  ]       384K .........                                         100% 4.84M=0.1s
[ALL  ]    
[ALL  ]    2021-05-26 12:09:09 (4.04 MB/s) - '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl' saved [467960/467960]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'zlib-1.2.11.tar.xz'
[EXTRA]    Retrieving 'gmp-6.1.2'
[ALL  ]    --2021-05-26 12:09:09--  https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz
[ALL  ]    Resolving gmplib.org (gmplib.org)... 130.242.124.102
[ALL  ]    Connecting to gmplib.org (gmplib.org)|130.242.124.102|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1946336 (1.9M) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 20%  451K 3s
[ALL  ]       384K ................ ................ ................ 40% 1.16M 2s
[ALL  ]       768K ................ ................ ................ 60% 3.48M 1s
[ALL  ]      1152K ................ ................ ................ 80% 3.48M 0s
[ALL  ]      1536K ................ ................ .............   100%  115M=1.4s
[ALL  ]    
[ALL  ]    2021-05-26 12:09:11 (1.33 MB/s) - '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl' saved [1946336/1946336]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'gmp-6.1.2.tar.xz'
[EXTRA]    Retrieving 'mpfr-4.0.2'
[ALL  ]    --2021-05-26 12:09:11--  http://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Resolving www.mpfr.org (www.mpfr.org)... 152.81.144.155
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz [following]
[ALL  ]    --2021-05-26 12:09:12--  https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1441996 (1.4M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 27%  894K 1s
[ALL  ]       384K ................ ................ ................ 54%  129M 0s
[ALL  ]       768K ................ ................ ................ 81% 4.36M 0s
[ALL  ]      1152K ................ ................                 100%  109M=0.5s
[ALL  ]    
[ALL  ]    2021-05-26 12:09:13 (2.64 MB/s) - '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl' saved [1441996/1441996]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'mpfr-4.0.2.tar.xz'
[EXTRA]    Retrieving 'isl-0.20'
[ALL  ]    --2021-05-26 12:09:13--  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:09:24--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:09:37--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:09:47--  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:10:05--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:10:17--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:10:28--  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:10:47--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:11:00--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ERROR]    isl: download failed
[ERROR]  
[ERROR]  >>
[ERROR]  >>  Build failed in step 'Retrieving needed toolchain components' tarballs'
[ERROR]  >>        called in step '(top-level)'
[ERROR]  >>
[ERROR]  >>  Error happened in: CT_Abort[scripts/functions@487]
[ERROR]  >>        called from: CT_DoFetch[scripts/functions@2103]
[ERROR]  >>        called from: CT_PackageRun[scripts/functions@2063]
[ERROR]  >>        called from: CT_Fetch[scripts/functions@2174]
[ERROR]  >>        called from: do_isl_get[scripts/build/companion_libs/121-isl.sh@16]
[ERROR]  >>        called from: do_companion_libs_get[scripts/build/companion_libs.sh@15]
[ERROR]  >>        called from: main[scripts/crosstool-NG.sh@648]
[ERROR]  >>
[ERROR]  >>  For more info on this error, look at the file: 'build.log'
[ERROR]  >>  There is a list of known issues, some with workarounds, in:
[ERROR]  >>      https://crosstool-ng.github.io/docs/known-issues/
[ERROR]  >>
[ERROR]  >> NOTE: Your configuration includes features marked EXPERIMENTAL.
[ERROR]  >> Before submitting a bug report, try to reproduce it without enabling
[ERROR]  >> any experimental features. Otherwise, you'll need to debug it
[ERROR]  >> and present an explanation why it is a bug in crosstool-NG - or
[ERROR]  >> preferably, a fix.
[ERROR]  >>
[ERROR]  >>  If you feel this is a bug in crosstool-NG, report it at:
[ERROR]  >>      https://github.com/crosstool-ng/crosstool-ng/issues/
[ERROR]  >>
[ERROR]  >>  Make sure your report includes all the information pertinent to this issue.
[ERROR]  >>  Read the bug reporting guidelines here:
[ERROR]  >>      http://crosstool-ng.github.io/support/
[ERROR]  
[ERROR]  (elapsed: 2:04.55)
/usr/local/bin/ct-ng:261: recipe for target 'build' failed
make: *** [build] Error 1
The command '/bin/sh -c ./build-toolchains.sh' returned a non-zero code: 1
Sending build context to Docker daemon  494.6kB

Step 1/21 : FROM ubuntu:18.04
 ---> 81bcf752ac3d
---
Wed May 26 12:11:44 UTC 2021 - building ...
Wed May 26 12:12:14 UTC 2021 - building ...
Wed May 26 12:12:44 UTC 2021 - building ...
Wed May 26 12:13:14 UTC 2021 - building ...
ERROR: An error was encountered with the build.
[INFO ]  Performing some trivial sanity checks
[INFO ]  Build started 20210526.121115
[INFO ]  Building environment variables
[WARN ]  Directory '/home/rustbuild/src' does not exist.
[WARN ]  Will not save downloaded tarballs to local storage.
[EXTRA]  Preparing working directories
[EXTRA]  Installing user-supplied crosstool-NG configuration
[EXTRA]  =================================================================
[EXTRA]  Dumping internal crosstool-NG configuration
[EXTRA]    Building a toolchain for:
[EXTRA]      build  = x86_64-pc-linux-gnu
[EXTRA]      host   = x86_64-pc-linux-gnu
[EXTRA]      target = riscv64-unknown-linux-gnu
[EXTRA]  Dumping internal crosstool-NG configuration: done in 0.06s (at 00:01)
[INFO ]  =================================================================
[INFO ]  Retrieving needed toolchain components' tarballs
[EXTRA]    Retrieving 'linux-4.20.8'
[ALL  ]    --2021-05-26 12:11:15--  http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving www.kernel.org (www.kernel.org)... 147.75.58.133, 2604:1380:4020:600::1
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:11:16--  https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:11:16--  https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving mirrors.edge.kernel.org (mirrors.edge.kernel.org)... 147.75.197.195, 2604:1380:1:3600::1
[ALL  ]    Connecting to mirrors.edge.kernel.org (mirrors.edge.kernel.org)|147.75.197.195|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 104281104 (99M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................  0% 8.83M 11s
[ALL  ]       384K ................ ................ ................  0% 44.4M 7s
[ALL  ]       768K ................ ................ ................  1%  106M 5s
[ALL  ]      1152K ................ ................ ................  1% 63.5M 4s
[ALL  ]      1536K ................ ................ ................  1%  115M 3s
[ALL  ]      1920K ................ ................ ................  2%  177M 3s
[ALL  ]      2304K ................ ................ ................  2%  132M 3s
[ALL  ]      2688K ................ ................ ................  3%  185M 2s
[ALL  ]      3072K ................ ................ ................  3%  216M 2s
[ALL  ]      3456K ................ ................ ................  3%  177M 2s
[ALL  ]      3840K ................ ................ ................  4%  229M 2s
[ALL  ]      4224K ................ ................ ................  4%  227M 2s
[ALL  ]      4608K ................ ................ ................  4%  223M 2s
[ALL  ]      4992K ................ ................ ................  5%  224M 1s
[ALL  ]      5376K ................ ................ ................  5%  233M 1s
[ALL  ]      5760K ................ ................ ................  6%  210M 1s
[ALL  ]      6144K ................ ................ ................  6%  214M 1s
[ALL  ]      6528K ................ ................ ................  6%  239M 1s
[ALL  ]      6912K ................ ................ ................  7%  203M 1s
[ALL  ]      7296K ................ ................ ................  7%  219M 1s
[ALL  ]      7680K ................ ................ ................  7%  219M 1s
[ALL  ]      8064K ................ ................ ................  8%  195M 1s
[ALL  ]      8448K ................ ................ ................  8%  223M 1s
[ALL  ]      8832K ................ ................ ................  9%  207M 1s
[ALL  ]      9216K ................ ................ ................  9%  244M 1s
[ALL  ]      9600K ................ ................ ................  9%  223M 1s
[ALL  ]      9984K ................ ................ ................ 10%  199M 1s
[ALL  ]     10368K ................ ................ ................ 10%  150M 1s
[ALL  ]     10752K ................ ................ ................ 10%  181M 1s
[ALL  ]     11136K ................ ................ ................ 11%  225M 1s
[ALL  ]     11520K ................ ................ ................ 11%  201M 1s
[ALL  ]     11904K ................ ................ ................ 12%  210M 1s
[ALL  ]     12288K ................ ................ ................ 12%  109M 1s
[ALL  ]     12672K ................ ................ ................ 12%  195M 1s
[ALL  ]     13056K ................ ................ ................ 13%  188M 1s
[ALL  ]     13440K ................ ................ ................ 13%  192M 1s
[ALL  ]     13824K ................ ................ ................ 13%  270M 1s
[ALL  ]     14208K ................ ................ ................ 14%  152M 1s
[ALL  ]     14592K ................ ................ ................ 14%  182M 1s
[ALL  ]     14976K ................ ................ ................ 15%  169M 1s
[ALL  ]     15360K ................ ................ ................ 15%  262M 1s
[ALL  ]     15744K ................ ................ ................ 15%  185M 1s
[ALL  ]     16128K ................ ................ ................ 16%  185M 1s
[ALL  ]     16512K ................ ................ ................ 16%  188M 1s
[ALL  ]     16896K ................ ................ ................ 16%  220M 1s
[ALL  ]     17280K ................ ................ ................ 17%  200M 1s
[ALL  ]     17664K ................ ................ ................ 17%  187M 1s
[ALL  ]     18048K ................ ................ ................ 18%  174M 1s
[ALL  ]     18432K ................ ................ ................ 18%  195M 1s
[ALL  ]     18816K ................ ................ ................ 18%  167M 1s
[ALL  ]     19200K ................ ................ ................ 19%  187M 1s
[ALL  ]     19584K ................ ................ ................ 19%  171M 1s
[ALL  ]     19968K ................ ................ ................ 19%  179M 1s
[ALL  ]     20352K ................ ................ ................ 20%  183M 1s
[ALL  ]     20736K ................ ................ ................ 20%  166M 1s
[ALL  ]     21120K ................ ................ ................ 21%  181M 1s
[ALL  ]     21504K ................ ................ ................ 21%  210M 1s
[ALL  ]     21888K ................ ................ ................ 21%  141M 1s
[ALL  ]     22272K ................ ................ ................ 22%  186M 1s
[ALL  ]     22656K ................ ................ ................ 22%  211M 1s
[ALL  ]     23040K ................ ................ ................ 23%  242M 1s
[ALL  ]     23424K ................ ................ ................ 23%  199M 1s
[ALL  ]     23808K ................ ................ ................ 23%  187M 1s
[ALL  ]     24192K ................ ................ ................ 24%  190M 1s
[ALL  ]     24576K ................ ................ ................ 24%  217M 1s
[ALL  ]     24960K ................ ................ ................ 24%  190M 1s
[ALL  ]     25344K ................ ................ ................ 25%  192M 1s
[ALL  ]     25728K ................ ................ ................ 25%  158M 1s
[ALL  ]     26112K ................ ................ ................ 26%  248M 1s
[ALL  ]     26496K ................ ................ ................ 26%  189M 1s
[ALL  ]     26880K ................ ................ ................ 26%  177M 1s
[ALL  ]     27264K ................ ................ ................ 27%  197M 1s
[ALL  ]     27648K ................ ................ ................ 27%  200M 1s
[ALL  ]     28032K ................ ................ ................ 27%  211M 1s
[ALL  ]     28416K ................ ................ ................ 28%  196M 1s
[ALL  ]     28800K ................ ................ ................ 28%  195M 1s
[ALL  ]     29184K ................ ................ ................ 29%  190M 0s
[ALL  ]     29568K ................ ................ ................ 29%  227M 0s
[ALL  ]     29952K ................ ................ ................ 29%  173M 0s
[ALL  ]     30336K ................ ................ ................ 30%  185M 0s
[ALL  ]     30720K ................ ................ ................ 30%  182M 0s
[ALL  ]     31104K ................ ................ ................ 30%  196M 0s
[ALL  ]     31488K ................ ................ ................ 31%  188M 0s
[ALL  ]     31872K ................ ................ ................ 31%  158M 0s
[ALL  ]     32256K ................ ................ ................ 32%  176M 0s
[ALL  ]     32640K ................ ................ ................ 32%  220M 0s
[ALL  ]     33024K ................ ................ ................ 32%  186M 0s
[ALL  ]     33408K ................ ................ ................ 33%  164M 0s
[ALL  ]     33792K ................ ................ ................ 33%  180M 0s
[ALL  ]     34176K ................ ................ ................ 33%  178M 0s
[ALL  ]     34560K ................ ................ ................ 34%  159M 0s
[ALL  ]     34944K ................ ................ ................ 34%  196M 0s
[ALL  ]     35328K ................ ................ ................ 35%  184M 0s
[ALL  ]     35712K ................ ................ ................ 35%  182M 0s
[ALL  ]     36096K ................ ................ ................ 35%  194M 0s
[ALL  ]     36480K ................ ................ ................ 36%  189M 0s
[ALL  ]     36864K ................ ................ ................ 36%  185M 0s
[ALL  ]     37248K ................ ................ ................ 36%  182M 0s
[ALL  ]     37632K ................ ................ ................ 37%  177M 0s
[ALL  ]     38016K ................ ................ ................ 37%  171M 0s
[ALL  ]     38400K ................ ................ ................ 38%  190M 0s
[ALL  ]     38784K ................ ................ ................ 38%  214M 0s
[ALL  ]     39168K ................ ................ ................ 38%  163M 0s
[ALL  ]     39552K ................ ................ ................ 39%  194M 0s
[ALL  ]     39936K ................ ................ ................ 39%  165M 0s
[ALL  ]     40320K ................ ................ ................ 39%  196M 0s
[ALL  ]     40704K ................ ................ ................ 40%  179M 0s
[ALL  ]     41088K ................ ................ ................ 40%  120M 0s
[ALL  ]     41472K ................ ................ ................ 41%  168M 0s
[ALL  ]     41856K ................ ................ ................ 41%  189M 0s
[ALL  ]     42240K ................ ................ ................ 41%  198M 0s
[ALL  ]     42624K ................ ................ ................ 42%  232M 0s
[ALL  ]     43008K ................ ................ ................ 42%  172M 0s
[ALL  ]     43392K ................ ................ ................ 42%  190M 0s
[ALL  ]     43776K ................ ................ ................ 43%  179M 0s
[ALL  ]     44160K ................ ................ ................ 43%  249M 0s
[ALL  ]     44544K ................ ................ ................ 44%  188M 0s
[ALL  ]     44928K ................ ................ ................ 44%  172M 0s
[ALL  ]     45312K ................ ................ ................ 44%  183M 0s
[ALL  ]     45696K ................ ................ ................ 45%  232M 0s
[ALL  ]     46080K ................ ................ ................ 45%  188M 0s
[ALL  ]     46464K ................ ................ ................ 46%  189M 0s
[ALL  ]     46848K ................ ................ ................ 46%  164M 0s
[ALL  ]     47232K ................ ................ ................ 46%  233M 0s
[ALL  ]     47616K ................ ................ ................ 47%  176M 0s
[ALL  ]     48000K ................ ................ ................ 47%  235M 0s
[ALL  ]     48384K ................ ................ ................ 47%  184M 0s
[ALL  ]     48768K ................ ................ ................ 48%  189M 0s
[ALL  ]     49152K ................ ................ ................ 48%  160M 0s
[ALL  ]     49536K ................ ................ ................ 49%  197M 0s
[ALL  ]     49920K ................ ................ ................ 49%  191M 0s
[ALL  ]     50304K ................ ................ ................ 49%  221M 0s
[ALL  ]     50688K ................ ................ ................ 50%  189M 0s
[ALL  ]     51072K ................ ................ ................ 50%  207M 0s
[ALL  ]     51456K ................ ................ ................ 50%  213M 0s
[ALL  ]     51840K ................ ................ ................ 51%  170M 0s
[ALL  ]     52224K ................ ................ ................ 51%  204M 0s
[ALL  ]     52608K ................ ................ ................ 52%  199M 0s
[ALL  ]     52992K ................ ................ ................ 52%  140M 0s
[ALL  ]     53376K ................ ................ ................ 52%  189M 0s
[ALL  ]     53760K ................ ................ ................ 53%  185M 0s
[ALL  ]     54144K ................ ................ ................ 53%  207M 0s
[ALL  ]     54528K ................ ................ ................ 53%  181M 0s
[ALL  ]     54912K ................ ................ ................ 54%  184M 0s
[ALL  ]     55296K ................ ................ ................ 54%  178M 0s
[ALL  ]     55680K ................ ................ ................ 55%  172M 0s
[ALL  ]     56064K ................ ................ ................ 55%  187M 0s
[ALL  ]     56448K ................ ................ ................ 55%  173M 0s
[ALL  ]     56832K ................ ................ ................ 56%  175M 0s
[ALL  ]     57216K ................ ................ ................ 56%  177M 0s
[ALL  ]     57600K ................ ................ ................ 56%  167M 0s
[ALL  ]     57984K ................ ................ ................ 57%  218M 0s
[ALL  ]     58368K ................ ................ ................ 57%  162M 0s
[ALL  ]     58752K ................ ................ ................ 58%  222M 0s
[ALL  ]     59136K ................ ................ ................ 58%  176M 0s
[ALL  ]     59520K ................ ................ ................ 58%  195M 0s
[ALL  ]     59904K ................ ................ ................ 59%  173M 0s
[ALL  ]     60288K ................ ................ ................ 59%  184M 0s
[ALL  ]     60672K ................ ................ ................ 59%  196M 0s
[ALL  ]     61056K ................ ................ ................ 60%  166M 0s
[ALL  ]     61440K ................ ................ ................ 60%  189M 0s
[ALL  ]     61824K ................ ................ ................ 61%  191M 0s
[ALL  ]     62208K ................ ................ ................ 61%  164M 0s
[ALL  ]     62592K ................ ................ ................ 61%  177M 0s
[ALL  ]     62976K ................ ................ ................ 62%  169M 0s
[ALL  ]     63360K ................ ................ ................ 62%  173M 0s
[ALL  ]     63744K ................ ................ ................ 62%  215M 0s
[ALL  ]     64128K ................ ................ ................ 63%  158M 0s
[ALL  ]     64512K ................ ................ ................ 63%  136M 0s
[ALL  ]     64896K ................ ................ ................ 64%  124M 0s
[ALL  ]     65280K ................ ................ ................ 64%  139M 0s
[ALL  ]     65664K ................ ................ ................ 64%  192M 0s
[ALL  ]     66048K ................ ................ ................ 65%  175M 0s
[ALL  ]     66432K ................ ................ ................ 65%  182M 0s
[ALL  ]     66816K ................ ................ ................ 65%  140M 0s
[ALL  ]     67200K ................ ................ ................ 66%  171M 0s
[ALL  ]     67584K ................ ................ ................ 66%  173M 0s
[ALL  ]     67968K ................ ................ ................ 67%  184M 0s
[ALL  ]     68352K ................ ................ ................ 67%  215M 0s
[ALL  ]     68736K ................ ................ ................ 67%  194M 0s
[ALL  ]     69120K ................ ................ ................ 68%  145M 0s
[ALL  ]     69504K ................ ................ ................ 68%  229M 0s
[ALL  ]     69888K ................ ................ ................ 69%  191M 0s
[ALL  ]     70272K ................ ................ ................ 69%  192M 0s
[ALL  ]     70656K ................ ................ ................ 69%  191M 0s
[ALL  ]     71040K ................ ................ ................ 70%  170M 0s
[ALL  ]     71424K ................ ................ ................ 70%  200M 0s
[ALL  ]     71808K ................ ................ ................ 70%  202M 0s
[ALL  ]     72192K ................ ................ ................ 71%  198M 0s
[ALL  ]     72576K ................ ................ ................ 71%  202M 0s
[ALL  ]     72960K ................ ................ ................ 72%  172M 0s
[ALL  ]     73344K ................ ................ ................ 72%  172M 0s
[ALL  ]     73728K ................ ................ ................ 72%  170M 0s
[ALL  ]     74112K ................ ................ ................ 73%  182M 0s
[ALL  ]     74496K ................ ................ ................ 73%  205M 0s
[ALL  ]     74880K ................ ................ ................ 73%  162M 0s
[ALL  ]     75264K ................ ................ ................ 74%  177M 0s
[ALL  ]     75648K ................ ................ ................ 74%  183M 0s
[ALL  ]     76032K ................ ................ ................ 75%  177M 0s
[ALL  ]     76416K ................ ................ ................ 75%  190M 0s
[ALL  ]     76800K ................ ................ ................ 75%  173M 0s
[ALL  ]     77184K ................ ................ ................ 76%  177M 0s
[ALL  ]     77568K ................ ................ ................ 76%  194M 0s
[ALL  ]     77952K ................ ................ ................ 76%  197M 0s
[ALL  ]     78336K ................ ................ ................ 77%  178M 0s
[ALL  ]     78720K ................ ................ ................ 77% 58.2M 0s
[ALL  ]     79104K ................ ................ ................ 78%  182M 0s
[ALL  ]     79488K ................ ................ ................ 78%  224M 0s
[ALL  ]     79872K ................ ................ ................ 78%  241M 0s
[ALL  ]     80256K ................ ................ ................ 79%  282M 0s
[ALL  ]     80640K ................ ................ ................ 79%  216M 0s
[ALL  ]     81024K ................ ................ ................ 79%  185M 0s
[ALL  ]     81408K ................ ................ ................ 80%  239M 0s
[ALL  ]     81792K ................ ................ ................ 80%  257M 0s
[ALL  ]     82176K ................ ................ ................ 81%  231M 0s
[ALL  ]     82560K ................ ................ ................ 81%  179M 0s
[ALL  ]     82944K ................ ................ ................ 81%  229M 0s
[ALL  ]     83328K ................ ................ ................ 82%  176M 0s
[ALL  ]     83712K ................ ................ ................ 82%  235M 0s
[ALL  ]     84096K ................ ................ ................ 82%  189M 0s
[ALL  ]     84480K ................ ................ ................ 83%  196M 0s
[ALL  ]     84864K ................ ................ ................ 83%  227M 0s
[ALL  ]     85248K ................ ................ ................ 84%  190M 0s
[ALL  ]     85632K ................ ................ ................ 84%  205M 0s
[ALL  ]     86016K ................ ................ ................ 84%  186M 0s
[ALL  ]     86400K ................ ................ ................ 85%  178M 0s
[ALL  ]     86784K ................ ................ ................ 85%  188M 0s
[ALL  ]     87168K ................ ................ ................ 85%  183M 0s
[ALL  ]     87552K ................ ................ ................ 86%  187M 0s
[ALL  ]     87936K ................ ................ ................ 86%  200M 0s
[ALL  ]     88320K ................ ................ ................ 87%  177M 0s
[ALL  ]     88704K ................ ................ ................ 87%  206M 0s
[ALL  ]     89088K ................ ................ ................ 87%  216M 0s
[ALL  ]     89472K ................ ................ ................ 88%  211M 0s
[ALL  ]     89856K ................ ................ ................ 88%  199M 0s
[ALL  ]     90240K ................ ................ ................ 88%  135M 0s
[ALL  ]     90624K ................ ................ ................ 89%  191M 0s
[ALL  ]     91008K ................ ................ ................ 89%  169M 0s
[ALL  ]     91392K ................ ................ ................ 90%  176M 0s
[ALL  ]     91776K ................ ................ ................ 90%  191M 0s
[ALL  ]     92160K ................ ................ ................ 90%  192M 0s
[ALL  ]     92544K ................ ................ ................ 91%  180M 0s
[ALL  ]     92928K ................ ................ ................ 91%  147M 0s
[ALL  ]     93312K ................ ................ ................ 92%  177M 0s
[ALL  ]     93696K ................ ................ ................ 92%  174M 0s
[ALL  ]     94080K ................ ................ ................ 92%  179M 0s
[ALL  ]     94464K ................ ................ ................ 93%  203M 0s
[ALL  ]     94848K ................ ................ ................ 93%  203M 0s
[ALL  ]     95232K ................ ................ ................ 93%  172M 0s
[ALL  ]     95616K ................ ................ ................ 94%  198M 0s
[ALL  ]     96000K ................ ................ ................ 94%  169M 0s
[ALL  ]     96384K ................ ................ ................ 95%  186M 0s
[ALL  ]     96768K ................ ................ ................ 95%  158M 0s
[ALL  ]     97152K ................ ................ ................ 95%  166M 0s
[ALL  ]     97536K ................ ................ ................ 96%  136M 0s
[ALL  ]     97920K ................ ................ ................ 96%  197M 0s
[ALL  ]     98304K ................ ................ ................ 96%  170M 0s
[ALL  ]     98688K ................ ................ ................ 97%  152M 0s
[ALL  ]     99072K ................ ................ ................ 97%  217M 0s
[ALL  ]     99456K ................ ................ ................ 98%  247M 0s
[ALL  ]     99840K ................ ................ ................ 98%  227M 0s
[ALL  ]    100224K ................ ................ ................ 98%  251M 0s
[ALL  ]    100608K ................ ................ ................ 99%  281M 0s
[ALL  ]    100992K ................ ................ ................ 99%  289M 0s
[ALL  ]    101376K ................ ................ ................ 99%  306M 0s
[ALL  ]    101760K .........                                         100%  296M=0.6s
[ALL  ]    
[ALL  ]    2021-05-26 12:11:16 (169 MB/s) - '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl' saved [104281104/104281104]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'linux-4.20.8.tar.xz'
[EXTRA]    Retrieving 'zlib-1.2.11'
[ALL  ]    --2021-05-26 12:11:17--  http://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.105.38.13
[ALL  ]    Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.105.38.13|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 302 Found
[ALL  ]    Location: https://cfhcable.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz [following]
[ALL  ]    --2021-05-26 12:11:17--  https://cfhcable.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving cfhcable.dl.sourceforge.net (cfhcable.dl.sourceforge.net)... 146.71.73.6
[ALL  ]    Connecting to cfhcable.dl.sourceforge.net (cfhcable.dl.sourceforge.net)|146.71.73.6|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 467960 (457K) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 84% 3.98M 0s
[ALL  ]       384K .........                                         100% 2.43M=0.1s
[ALL  ]    
[ALL  ]    2021-05-26 12:11:17 (3.61 MB/s) - '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl' saved [467960/467960]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'zlib-1.2.11.tar.xz'
[EXTRA]    Retrieving 'gmp-6.1.2'
[ALL  ]    --2021-05-26 12:11:17--  https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz
[ALL  ]    Resolving gmplib.org (gmplib.org)... 130.242.124.102
[ALL  ]    Connecting to gmplib.org (gmplib.org)|130.242.124.102|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1946336 (1.9M) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 20%  515K 3s
[ALL  ]       384K ................ ................ ................ 40% 1.18M 2s
[ALL  ]       768K ................ ................ ................ 60% 3.47M 1s
[ALL  ]      1152K ................ ................ ................ 80% 3.50M 0s
[ALL  ]      1536K ................ ................ .............   100% 3.37M=1.4s
[ALL  ]    
[ALL  ]    2021-05-26 12:11:19 (1.34 MB/s) - '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl' saved [1946336/1946336]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'gmp-6.1.2.tar.xz'
[EXTRA]    Retrieving 'mpfr-4.0.2'
[ALL  ]    --2021-05-26 12:11:19--  http://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Resolving www.mpfr.org (www.mpfr.org)... 152.81.144.155
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz [following]
[ALL  ]    --2021-05-26 12:11:20--  https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1441996 (1.4M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 27%  745K 1s
[ALL  ]       384K ................ ................ ................ 54%  147M 0s
[ALL  ]       768K ................ ................ ................ 81% 4.12M 0s
[ALL  ]      1152K ................ ................                 100% 2.89M=0.7s
[ALL  ]    
[ALL  ]    2021-05-26 12:11:21 (1.98 MB/s) - '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl' saved [1441996/1441996]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'mpfr-4.0.2.tar.xz'
[EXTRA]    Retrieving 'isl-0.20'
[ALL  ]    --2021-05-26 12:11:21--  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:11:32--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:11:44--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:11:54--  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:12:13--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:12:28--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:12:45--  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:12:57--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:13:10--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Giving up.
[ALL  ]    
[ERROR]    isl: download failed
[ERROR]  
[ERROR]  >>
[ERROR]  >>  Build failed in step 'Retrieving needed toolchain components' tarballs'
[ERROR]  >>        called in step '(top-level)'
[ERROR]  >>
[ERROR]  >>  Error happened in: CT_Abort[scripts/functions@487]
[ERROR]  >>        called from: CT_DoFetch[scripts/functions@2103]
[ERROR]  >>        called from: CT_PackageRun[scripts/functions@2063]
[ERROR]  >>        called from: CT_Fetch[scripts/functions@2174]
[ERROR]  >>        called from: do_isl_get[scripts/build/companion_libs/121-isl.sh@16]
[ERROR]  >>        called from: do_companion_libs_get[scripts/build/companion_libs.sh@15]
[ERROR]  >>        called from: main[scripts/crosstool-NG.sh@648]
[ERROR]  >>
[ERROR]  >>  For more info on this error, look at the file: 'build.log'
[ERROR]  >>  There is a list of known issues, some with workarounds, in:
[ERROR]  >>      https://crosstool-ng.github.io/docs/known-issues/
[ERROR]  >>
[ERROR]  >> NOTE: Your configuration includes features marked EXPERIMENTAL.
[ERROR]  >> Before submitting a bug report, try to reproduce it without enabling
[ERROR]  >> any experimental features. Otherwise, you'll need to debug it
[ERROR]  >> and present an explanation why it is a bug in crosstool-NG - or
[ERROR]  >> preferably, a fix.
[ERROR]  >>
[ERROR]  >>  If you feel this is a bug in crosstool-NG, report it at:
[ERROR]  >>      https://github.com/crosstool-ng/crosstool-ng/issues/
[ERROR]  >>
[ERROR]  >>  Make sure your report includes all the information pertinent to this issue.
[ERROR]  >>  Read the bug reporting guidelines here:
[ERROR]  >>      http://crosstool-ng.github.io/support/
[ERROR]  
[ERROR]  (elapsed: 2:15.93)
/usr/local/bin/ct-ng:261: recipe for target 'build' failed
make: *** [build] Error 1
The command '/bin/sh -c ./build-toolchains.sh' returned a non-zero code: 1
Sending build context to Docker daemon  494.6kB

Step 1/21 : FROM ubuntu:18.04
 ---> 81bcf752ac3d
---
+ set +x
Wed May 26 12:14:04 UTC 2021 - building ...
Wed May 26 12:14:34 UTC 2021 - building ...
Wed May 26 12:15:04 UTC 2021 - building ...
ERROR: An error was encountered with the build.
[INFO ]  Performing some trivial sanity checks
[INFO ]  Build started 20210526.121335
[INFO ]  Building environment variables
[WARN ]  Directory '/home/rustbuild/src' does not exist.
[WARN ]  Will not save downloaded tarballs to local storage.
[EXTRA]  Preparing working directories
[EXTRA]  Installing user-supplied crosstool-NG configuration
[EXTRA]  =================================================================
[EXTRA]  Dumping internal crosstool-NG configuration
[EXTRA]    Building a toolchain for:
[EXTRA]      build  = x86_64-pc-linux-gnu
[EXTRA]      host   = x86_64-pc-linux-gnu
[EXTRA]      target = riscv64-unknown-linux-gnu
[EXTRA]  Dumping internal crosstool-NG configuration: done in 0.05s (at 00:02)
[INFO ]  =================================================================
[INFO ]  Retrieving needed toolchain components' tarballs
[EXTRA]    Retrieving 'linux-4.20.8'
[ALL  ]    --2021-05-26 12:13:36--  http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving www.kernel.org (www.kernel.org)... 147.75.58.133, 2604:1380:4020:600::1
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:13:36--  https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:13:36--  https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving mirrors.edge.kernel.org (mirrors.edge.kernel.org)... 147.75.197.195, 2604:1380:1:3600::1
[ALL  ]    Connecting to mirrors.edge.kernel.org (mirrors.edge.kernel.org)|147.75.197.195|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 104281104 (99M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................  0% 9.01M 11s
[ALL  ]       384K ................ ................ ................  0% 43.8M 7s
[ALL  ]       768K ................ ................ ................  1%  159M 5s
[ALL  ]      1152K ................ ................ ................  1% 53.3M 4s
[ALL  ]      1536K ................ ................ ................  1%  184M 3s
[ALL  ]      1920K ................ ................ ................  2%  217M 3s
[ALL  ]      2304K ................ ................ ................  2% 94.8M 2s
[ALL  ]      2688K ................ ................ ................  3%  250M 2s
[ALL  ]      3072K ................ ................ ................  3%  247M 2s
[ALL  ]      3456K ................ ................ ................  3%  261M 2s
[ALL  ]      3840K ................ ................ ................  4%  234M 2s
[ALL  ]      4224K ................ ................ ................  4%  256M 2s
[ALL  ]      4608K ................ ................ ................  4%  232M 1s
[ALL  ]      4992K ................ ................ ................  5%  254M 1s
[ALL  ]      5376K ................ ................ ................  5%  262M 1s
[ALL  ]      5760K ................ ................ ................  6%  270M 1s
[ALL  ]      6144K ................ ................ ................  6%  272M 1s
[ALL  ]      6528K ................ ................ ................  6%  262M 1s
[ALL  ]      6912K ................ ................ ................  7%  258M 1s
[ALL  ]      7296K ................ ................ ................  7%  231M 1s
[ALL  ]      7680K ................ ................ ................  7%  246M 1s
[ALL  ]      8064K ................ ................ ................  8%  271M 1s
[ALL  ]      8448K ................ ................ ................  8%  268M 1s
[ALL  ]      8832K ................ ................ ................  9%  263M 1s
[ALL  ]      9216K ................ ................ ................  9%  262M 1s
[ALL  ]      9600K ................ ................ ................  9%  257M 1s
[ALL  ]      9984K ................ ................ ................ 10%  199M 1s
[ALL  ]     10368K ................ ................ ................ 10%  245M 1s
[ALL  ]     10752K ................ ................ ................ 10%  247M 1s
[ALL  ]     11136K ................ ................ ................ 11%  261M 1s
[ALL  ]     11520K ................ ................ ................ 11%  266M 1s
[ALL  ]     11904K ................ ................ ................ 12%  267M 1s
[ALL  ]     12288K ................ ................ ................ 12%  240M 1s
[ALL  ]     12672K ................ ................ ................ 12%  261M 1s
[ALL  ]     13056K ................ ................ ................ 13%  245M 1s
[ALL  ]     13440K ................ ................ ................ 13%  256M 1s
[ALL  ]     13824K ................ ................ ................ 13%  273M 1s
[ALL  ]     14208K ................ ................ ................ 14%  243M 1s
[ALL  ]     14592K ................ ................ ................ 14%  269M 1s
[ALL  ]     14976K ................ ................ ................ 15%  227M 1s
[ALL  ]     15360K ................ ................ ................ 15%  246M 1s
[ALL  ]     15744K ................ ................ ................ 15%  235M 1s
[ALL  ]     16128K ................ ................ ................ 16%  231M 1s
[ALL  ]     16512K ................ ................ ................ 16%  244M 1s
[ALL  ]     16896K ................ ................ ................ 16%  234M 1s
[ALL  ]     17280K ................ ................ ................ 17%  265M 1s
[ALL  ]     17664K ................ ................ ................ 17%  244M 1s
[ALL  ]     18048K ................ ................ ................ 18%  259M 1s
[ALL  ]     18432K ................ ................ ................ 18%  253M 1s
[ALL  ]     18816K ................ ................ ................ 18%  264M 1s
[ALL  ]     19200K ................ ................ ................ 19%  266M 1s
[ALL  ]     19584K ................ ................ ................ 19%  249M 1s
[ALL  ]     19968K ................ ................ ................ 19%  229M 1s
[ALL  ]     20352K ................ ................ ................ 20%  190M 1s
[ALL  ]     20736K ................ ................ ................ 20%  271M 1s
[ALL  ]     21120K ................ ................ ................ 21%  226M 1s
[ALL  ]     21504K ................ ................ ................ 21%  247M 1s
[ALL  ]     21888K ................ ................ ................ 21%  276M 1s
[ALL  ]     22272K ................ ................ ................ 22%  276M 1s
[ALL  ]     22656K ................ ................ ................ 22%  214M 1s
[ALL  ]     23040K ................ ................ ................ 23%  235M 0s
[ALL  ]     23424K ................ ................ ................ 23%  248M 0s
[ALL  ]     23808K ................ ................ ................ 23%  252M 0s
[ALL  ]     24192K ................ ................ ................ 24%  255M 0s
[ALL  ]     24576K ................ ................ ................ 24%  252M 0s
[ALL  ]     24960K ................ ................ ................ 24%  218M 0s
[ALL  ]     25344K ................ ................ ................ 25%  263M 0s
[ALL  ]     25728K ................ ................ ................ 25%  232M 0s
[ALL  ]     26112K ................ ................ ................ 26%  242M 0s
[ALL  ]     26496K ................ ................ ................ 26%  248M 0s
[ALL  ]     26880K ................ ................ ................ 26%  233M 0s
[ALL  ]     27264K ................ ................ ................ 27%  255M 0s
[ALL  ]     27648K ................ ................ ................ 27%  221M 0s
[ALL  ]     28032K ................ ................ ................ 27%  264M 0s
[ALL  ]     28416K ................ ................ ................ 28%  257M 0s
[ALL  ]     28800K ................ ................ ................ 28%  255M 0s
[ALL  ]     29184K ................ ................ ................ 29%  265M 0s
[ALL  ]     29568K ................ ................ ................ 29%  244M 0s
[ALL  ]     29952K ................ ................ ................ 29%  258M 0s
[ALL  ]     30336K ................ ................ ................ 30%  214M 0s
[ALL  ]     30720K ................ ................ ................ 30%  246M 0s
[ALL  ]     31104K ................ ................ ................ 30%  265M 0s
[ALL  ]     31488K ................ ................ ................ 31%  253M 0s
[ALL  ]     31872K ................ ................ ................ 31%  258M 0s
[ALL  ]     32256K ................ ................ ................ 32%  242M 0s
[ALL  ]     32640K ................ ................ ................ 32%  204M 0s
[ALL  ]     33024K ................ ................ ................ 32%  258M 0s
[ALL  ]     33408K ................ ................ ................ 33%  269M 0s
[ALL  ]     33792K ................ ................ ................ 33%  249M 0s
[ALL  ]     34176K ................ ................ ................ 33%  268M 0s
[ALL  ]     34560K ................ ................ ................ 34%  249M 0s
[ALL  ]     34944K ................ ................ ................ 34%  273M 0s
[ALL  ]     35328K ................ ................ ................ 35%  202M 0s
[ALL  ]     35712K ................ ................ ................ 35%  265M 0s
[ALL  ]     36096K ................ ................ ................ 35%  251M 0s
[ALL  ]     36480K ................ ................ ................ 36%  255M 0s
[ALL  ]     36864K ................ ................ ................ 36%  246M 0s
[ALL  ]     37248K ................ ................ ................ 36%  249M 0s
[ALL  ]     37632K ................ ................ ................ 37%  249M 0s
[ALL  ]     38016K ................ ................ ................ 37%  230M 0s
[ALL  ]     38400K ................ ................ ................ 38%  265M 0s
[ALL  ]     38784K ................ ................ ................ 38%  254M 0s
[ALL  ]     39168K ................ ................ ................ 38%  222M 0s
[ALL  ]     39552K ................ ................ ................ 39%  219M 0s
[ALL  ]     39936K ................ ................ ................ 39%  241M 0s
[ALL  ]     40320K ................ ................ ................ 39%  203M 0s
[ALL  ]     40704K ................ ................ ................ 40%  260M 0s
[ALL  ]     41088K ................ ................ ................ 40%  271M 0s
[ALL  ]     41472K ................ ................ ................ 41%  242M 0s
[ALL  ]     41856K ................ ................ ................ 41%  250M 0s
[ALL  ]     42240K ................ ................ ................ 41%  251M 0s
[ALL  ]     42624K ................ ................ ................ 42%  254M 0s
[ALL  ]     43008K ................ ................ ................ 42%  208M 0s
[ALL  ]     43392K ................ ................ ................ 42%  245M 0s
[ALL  ]     43776K ................ ................ ................ 43%  205M 0s
[ALL  ]     44160K ................ ................ ................ 43%  278M 0s
[ALL  ]     44544K ................ ................ ................ 44%  228M 0s
[ALL  ]     44928K ................ ................ ................ 44%  258M 0s
[ALL  ]     45312K ................ ................ ................ 44%  218M 0s
[ALL  ]     45696K ................ ................ ................ 45%  269M 0s
[ALL  ]     46080K ................ ................ ................ 45%  268M 0s
[ALL  ]     46464K ................ ................ ................ 46%  221M 0s
[ALL  ]     46848K ................ ................ ................ 46%  251M 0s
[ALL  ]     47232K ................ ................ ................ 46%  248M 0s
[ALL  ]     47616K ................ ................ ................ 47%  265M 0s
[ALL  ]     48000K ................ ................ ................ 47%  234M 0s
[ALL  ]     48384K ................ ................ ................ 47%  237M 0s
[ALL  ]     48768K ................ ................ ................ 48%  223M 0s
[ALL  ]     49152K ................ ................ ................ 48%  262M 0s
[ALL  ]     49536K ................ ................ ................ 49%  249M 0s
[ALL  ]     49920K ................ ................ ................ 49%  254M 0s
[ALL  ]     50304K ................ ................ ................ 49%  142M 0s
[ALL  ]     50688K ................ ................ ................ 50%  247M 0s
[ALL  ]     51072K ................ ................ ................ 50%  241M 0s
[ALL  ]     51456K ................ ................ ................ 50%  256M 0s
[ALL  ]     51840K ................ ................ ................ 51%  260M 0s
[ALL  ]     52224K ................ ................ ................ 51%  209M 0s
[ALL  ]     52608K ................ ................ ................ 52%  228M 0s
[ALL  ]     52992K ................ ................ ................ 52%  245M 0s
[ALL  ]     53376K ................ ................ ................ 52%  255M 0s
[ALL  ]     53760K ................ ................ ................ 53%  255M 0s
[ALL  ]     54144K ................ ................ ................ 53%  221M 0s
[ALL  ]     54528K ................ ................ ................ 53%  217M 0s
[ALL  ]     54912K ................ ................ ................ 54%  198M 0s
[ALL  ]     55296K ................ ................ ................ 54%  256M 0s
[ALL  ]     55680K ................ ................ ................ 55%  248M 0s
[ALL  ]     56064K ................ ................ ................ 55%  236M 0s
[ALL  ]     56448K ................ ................ ................ 55%  245M 0s
[ALL  ]     56832K ................ ................ ................ 56%  239M 0s
[ALL  ]     57216K ................ ................ ................ 56%  264M 0s
[ALL  ]     57600K ................ ................ ................ 56%  241M 0s
[ALL  ]     57984K ................ ................ ................ 57%  222M 0s
[ALL  ]     58368K ................ ................ ................ 57%  235M 0s
[ALL  ]     58752K ................ ................ ................ 58%  232M 0s
[ALL  ]     59136K ................ ................ ................ 58%  246M 0s
[ALL  ]     59520K ................ ................ ................ 58%  260M 0s
[ALL  ]     59904K ................ ................ ................ 59%  198M 0s
[ALL  ]     60288K ................ ................ ................ 59%  226M 0s
[ALL  ]     60672K ................ ................ ................ 59%  205M 0s
[ALL  ]     61056K ................ ................ ................ 60%  246M 0s
[ALL  ]     61440K ................ ................ ................ 60%  235M 0s
[ALL  ]     61824K ................ ................ ................ 61%  253M 0s
[ALL  ]     62208K ................ ................ ................ 61%  245M 0s
[ALL  ]     62592K ................ ................ ................ 61%  264M 0s
[ALL  ]     62976K ................ ................ ................ 62%  249M 0s
[ALL  ]     63360K ................ ................ ................ 62%  245M 0s
[ALL  ]     63744K ................ ................ ................ 62%  249M 0s
[ALL  ]     64128K ................ ................ ................ 63%  251M 0s
[ALL  ]     64512K ................ ................ ................ 63%  251M 0s
[ALL  ]     64896K ................ ................ ................ 64%  228M 0s
[ALL  ]     65280K ................ ................ ................ 64%  226M 0s
[ALL  ]     65664K ................ ................ ................ 64%  244M 0s
[ALL  ]     66048K ................ ................ ................ 65%  238M 0s
[ALL  ]     66432K ................ ................ ................ 65%  252M 0s
[ALL  ]     66816K ................ ................ ................ 65%  248M 0s
[ALL  ]     67200K ................ ................ ................ 66%  239M 0s
[ALL  ]     67584K ................ ................ ................ 66%  253M 0s
[ALL  ]     67968K ................ ................ ................ 67%  243M 0s
[ALL  ]     68352K ................ ................ ................ 67%  231M 0s
[ALL  ]     68736K ................ ................ ................ 67%  236M 0s
[ALL  ]     69120K ................ ................ ................ 68%  268M 0s
[ALL  ]     69504K ................ ................ ................ 68%  249M 0s
[ALL  ]     69888K ................ ................ ................ 69%  194M 0s
[ALL  ]     70272K ................ ................ ................ 69%  237M 0s
[ALL  ]     70656K ................ ................ ................ 69%  246M 0s
[ALL  ]     71040K ................ ................ ................ 70%  256M 0s
[ALL  ]     71424K ................ ................ ................ 70%  264M 0s
[ALL  ]     71808K ................ ................ ................ 70%  244M 0s
[ALL  ]     72192K ................ ................ ................ 71%  225M 0s
[ALL  ]     72576K ................ ................ ................ 71%  239M 0s
[ALL  ]     72960K ................ ................ ................ 72%  253M 0s
[ALL  ]     73344K ................ ................ ................ 72%  250M 0s
[ALL  ]     73728K ................ ................ ................ 72%  234M 0s
[ALL  ]     74112K ................ ................ ................ 73%  236M 0s
[ALL  ]     74496K ................ ................ ................ 73%  238M 0s
[ALL  ]     74880K ................ ................ ................ 73% 67.1M 0s
[ALL  ]     75264K ................ ................ ................ 74%  231M 0s
[ALL  ]     75648K ................ ................ ................ 74%  239M 0s
[ALL  ]     76032K ................ ................ ................ 75%  258M 0s
[ALL  ]     76416K ................ ................ ................ 75%  244M 0s
[ALL  ]     76800K ................ ................ ................ 75%  266M 0s
[ALL  ]     77184K ................ ................ ................ 76%  249M 0s
[ALL  ]     77568K ................ ................ ................ 76%  239M 0s
[ALL  ]     77952K ................ ................ ................ 76%  268M 0s
[ALL  ]     78336K ................ ................ ................ 77%  279M 0s
[ALL  ]     78720K ................ ................ ................ 77%  289M 0s
[ALL  ]     79104K ................ ................ ................ 78%  234M 0s
[ALL  ]     79488K ................ ................ ................ 78%  244M 0s
[ALL  ]     79872K ................ ................ ................ 78%  267M 0s
[ALL  ]     80256K ................ ................ ................ 79%  271M 0s
[ALL  ]     80640K ................ ................ ................ 79%  264M 0s
[ALL  ]     81024K ................ ................ ................ 79%  264M 0s
[ALL  ]     81408K ................ ................ ................ 80%  260M 0s
[ALL  ]     81792K ................ ................ ................ 80%  223M 0s
[ALL  ]     82176K ................ ................ ................ 81%  273M 0s
[ALL  ]     82560K ................ ................ ................ 81%  274M 0s
[ALL  ]     82944K ................ ................ ................ 81%  261M 0s
[ALL  ]     83328K ................ ................ ................ 82%  275M 0s
[ALL  ]     83712K ................ ................ ................ 82%  261M 0s
[ALL  ]     84096K ................ ................ ................ 82%  251M 0s
[ALL  ]     84480K ................ ................ ................ 83%  208M 0s
[ALL  ]     84864K ................ ................ ................ 83%  129M 0s
[ALL  ]     85248K ................ ................ ................ 84%  222M 0s
[ALL  ]     85632K ................ ................ ................ 84%  262M 0s
[ALL  ]     86016K ................ ................ ................ 84%  213M 0s
[ALL  ]     86400K ................ ................ ................ 85%  247M 0s
[ALL  ]     86784K ................ ................ ................ 85%  259M 0s
[ALL  ]     87168K ................ ................ ................ 85%  187M 0s
[ALL  ]     87552K ................ ................ ................ 86%  208M 0s
[ALL  ]     87936K ................ ................ ................ 86%  218M 0s
[ALL  ]     88320K ................ ................ ................ 87%  199M 0s
[ALL  ]     88704K ................ ................ ................ 87%  135M 0s
[ALL  ]     89088K ................ ................ ................ 87%  227M 0s
[ALL  ]     89472K ................ ................ ................ 88%  240M 0s
[ALL  ]     89856K ................ ................ ................ 88%  247M 0s
[ALL  ]     90240K ................ ................ ................ 88%  259M 0s
[ALL  ]     90624K ................ ................ ................ 89%  239M 0s
[ALL  ]     91008K ................ ................ ................ 89%  231M 0s
[ALL  ]     91392K ................ ................ ................ 90%  270M 0s
[ALL  ]     91776K ................ ................ ................ 90%  236M 0s
[ALL  ]     92160K ................ ................ ................ 90%  254M 0s
[ALL  ]     92544K ................ ................ ................ 91%  262M 0s
[ALL  ]     92928K ................ ................ ................ 91%  222M 0s
[ALL  ]     93312K ................ ................ ................ 92%  214M 0s
[ALL  ]     93696K ................ ................ ................ 92%  250M 0s
[ALL  ]     94080K ................ ................ ................ 92%  252M 0s
[ALL  ]     94464K ................ ................ ................ 93%  259M 0s
[ALL  ]     94848K ................ ................ ................ 93%  229M 0s
[ALL  ]     95232K ................ ................ ................ 93%  271M 0s
[ALL  ]     95616K ................ ................ ................ 94%  257M 0s
[ALL  ]     96000K ................ ................ ................ 94%  235M 0s
[ALL  ]     96384K ................ ................ ................ 95%  250M 0s
[ALL  ]     96768K ................ ................ ................ 95%  239M 0s
[ALL  ]     97152K ................ ................ ................ 95%  236M 0s
[ALL  ]     97536K ................ ................ ................ 96%  260M 0s
[ALL  ]     97920K ................ ................ ................ 96%  238M 0s
[ALL  ]     98304K ................ ................ ................ 96%  233M 0s
[ALL  ]     98688K ................ ................ ................ 97%  283M 0s
[ALL  ]     99072K ................ ................ ................ 97%  288M 0s
[ALL  ]     99456K ................ ................ ................ 98%  153M 0s
[ALL  ]     99840K ................ ................ ................ 98%  232M 0s
[ALL  ]    100224K ................ ................ ................ 98%  262M 0s
[ALL  ]    100608K ................ ................ ................ 99%  271M 0s
[ALL  ]    100992K ................ ................ ................ 99%  262M 0s
[ALL  ]    101376K ................ ................ ................ 99%  296M 0s
[ALL  ]    101760K .........                                         100%  318M=0.5s
[ALL  ]    
[ALL  ]    2021-05-26 12:13:36 (211 MB/s) - '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl' saved [104281104/104281104]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'linux-4.20.8.tar.xz'
[EXTRA]    Retrieving 'zlib-1.2.11'
[ALL  ]    --2021-05-26 12:13:37--  http://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.105.38.13
[ALL  ]    Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.105.38.13|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 302 Found
[ALL  ]    Location: https://phoenixnap.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz [following]
[ALL  ]    --2021-05-26 12:13:37--  https://phoenixnap.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving phoenixnap.dl.sourceforge.net (phoenixnap.dl.sourceforge.net)... 184.164.141.26
[ALL  ]    Connecting to phoenixnap.dl.sourceforge.net (phoenixnap.dl.sourceforge.net)|184.164.141.26|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 467960 (457K) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 84% 1.62M 0s
[ALL  ]       384K .........                                         100%  151M=0.2s
[ALL  ]    
[ALL  ]    2021-05-26 12:13:38 (1.92 MB/s) - '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl' saved [467960/467960]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'zlib-1.2.11.tar.xz'
[EXTRA]    Retrieving 'gmp-6.1.2'
[ALL  ]    --2021-05-26 12:13:38--  https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz
[ALL  ]    Resolving gmplib.org (gmplib.org)... 130.242.124.102
[ALL  ]    Connecting to gmplib.org (gmplib.org)|130.242.124.102|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1946336 (1.9M) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 20%  451K 3s
[ALL  ]       384K ................ ................ ................ 40% 1.75M 2s
[ALL  ]       768K ................ ................ ................ 60% 3.48M 1s
[ALL  ]      1152K ................ ................ ................ 80% 3.47M 0s
[ALL  ]      1536K ................ ................ .............   100% 3.39M=1.4s
[ALL  ]    
[ALL  ]    2021-05-26 12:13:40 (1.34 MB/s) - '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl' saved [1946336/1946336]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'gmp-6.1.2.tar.xz'
[EXTRA]    Retrieving 'mpfr-4.0.2'
[ALL  ]    --2021-05-26 12:13:40--  http://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Resolving www.mpfr.org (www.mpfr.org)... 152.81.144.155
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz [following]
[ALL  ]    --2021-05-26 12:13:40--  https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1441996 (1.4M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 27%  894K 1s
[ALL  ]       384K ................ ................ ................ 54% 4.36M 0s
[ALL  ]       768K ................ ................ ................ 81%  102M 0s
[ALL  ]      1152K ................ ................                 100%  126M=0.5s
[ALL  ]    
[ALL  ]    2021-05-26 12:13:41 (2.64 MB/s) - '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl' saved [1441996/1441996]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'mpfr-4.0.2.tar.xz'
[EXTRA]    Retrieving 'isl-0.20'
[ALL  ]    --2021-05-26 12:13:41--  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:13:53--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:14:05--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:14:16--  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:14:27--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:14:41--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:14:58--  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:15:09--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:15:21--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ERROR]    isl: download failed
[ERROR]  
[ERROR]  >>
[ERROR]  >>  Build failed in step 'Retrieving needed toolchain components' tarballs'
[ERROR]  >>        called in step '(top-level)'
[ERROR]  >>
[ERROR]  >>  Error happened in: CT_Abort[scripts/functions@487]
[ERROR]  >>        called from: CT_DoFetch[scripts/functions@2103]
[ERROR]  >>        called from: CT_PackageRun[scripts/functions@2063]
[ERROR]  >>        called from: CT_Fetch[scripts/functions@2174]
[ERROR]  >>        called from: do_isl_get[scripts/build/companion_libs/121-isl.sh@16]
[ERROR]  >>        called from: do_companion_libs_get[scripts/build/companion_libs.sh@15]
[ERROR]  >>        called from: main[scripts/crosstool-NG.sh@648]
[ERROR]  >>
[ERROR]  >>  For more info on this error, look at the file: 'build.log'
[ERROR]  >>  There is a list of known issues, some with workarounds, in:
[ERROR]  >>      https://crosstool-ng.github.io/docs/known-issues/
[ERROR]  >>
[ERROR]  >> NOTE: Your configuration includes features marked EXPERIMENTAL.
[ERROR]  >> Before submitting a bug report, try to reproduce it without enabling
[ERROR]  >> any experimental features. Otherwise, you'll need to debug it
[ERROR]  >> and present an explanation why it is a bug in crosstool-NG - or
[ERROR]  >> preferably, a fix.
[ERROR]  >>
[ERROR]  >>  If you feel this is a bug in crosstool-NG, report it at:
[ERROR]  >>      https://github.com/crosstool-ng/crosstool-ng/issues/
[ERROR]  >>
[ERROR]  >>  Make sure your report includes all the information pertinent to this issue.
[ERROR]  >>  Read the bug reporting guidelines here:
[ERROR]  >>      http://crosstool-ng.github.io/support/
[ERROR]  
[ERROR]  (elapsed: 1:59.14)
/usr/local/bin/ct-ng:261: recipe for target 'build' failed
make: *** [build] Error 1
The command '/bin/sh -c ./build-toolchains.sh' returned a non-zero code: 1
Sending build context to Docker daemon  494.6kB

Step 1/21 : FROM ubuntu:18.04
 ---> 81bcf752ac3d
---
+ set +x
Wed May 26 12:16:09 UTC 2021 - building ...
Wed May 26 12:16:39 UTC 2021 - building ...
Wed May 26 12:17:09 UTC 2021 - building ...
ERROR: An error was encountered with the build.
[INFO ]  Performing some trivial sanity checks
[INFO ]  Build started 20210526.121539
[INFO ]  Building environment variables
[WARN ]  Directory '/home/rustbuild/src' does not exist.
[WARN ]  Will not save downloaded tarballs to local storage.
[EXTRA]  Preparing working directories
[EXTRA]  Installing user-supplied crosstool-NG configuration
[EXTRA]  =================================================================
[EXTRA]  Dumping internal crosstool-NG configuration
[EXTRA]    Building a toolchain for:
[EXTRA]      build  = x86_64-pc-linux-gnu
[EXTRA]      host   = x86_64-pc-linux-gnu
[EXTRA]      target = riscv64-unknown-linux-gnu
[EXTRA]  Dumping internal crosstool-NG configuration: done in 0.06s (at 00:01)
[INFO ]  =================================================================
[INFO ]  Retrieving needed toolchain components' tarballs
[EXTRA]    Retrieving 'linux-4.20.8'
[ALL  ]    --2021-05-26 12:15:40--  http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving www.kernel.org (www.kernel.org)... 147.75.58.133, 2604:1380:4020:600::1
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:15:40--  https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Connecting to www.kernel.org (www.kernel.org)|147.75.58.133|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz [following]
[ALL  ]    --2021-05-26 12:15:40--  https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/linux-4.20.8.tar.xz
[ALL  ]    Resolving mirrors.edge.kernel.org (mirrors.edge.kernel.org)... 147.75.197.195, 2604:1380:1:3600::1
[ALL  ]    Connecting to mirrors.edge.kernel.org (mirrors.edge.kernel.org)|147.75.197.195|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 104281104 (99M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................  0% 10.8M 9s
[ALL  ]       384K ................ ................ ................  0% 40.3M 6s
[ALL  ]       768K ................ ................ ................  1% 48.5M 5s
[ALL  ]      1152K ................ ................ ................  1%  191M 4s
[ALL  ]      1536K ................ ................ ................  1% 58.0M 3s
[ALL  ]      1920K ................ ................ ................  2%  201M 3s
[ALL  ]      2304K ................ ................ ................  2%  261M 2s
[ALL  ]      2688K ................ ................ ................  3%  237M 2s
[ALL  ]      3072K ................ ................ ................  3%  249M 2s
[ALL  ]      3456K ................ ................ ................  3%  116M 2s
[ALL  ]      3840K ................ ................ ................  4%  216M 2s
[ALL  ]      4224K ................ ................ ................  4%  255M 2s
[ALL  ]      4608K ................ ................ ................  4%  253M 1s
[ALL  ]      4992K ................ ................ ................  5%  260M 1s
[ALL  ]      5376K ................ ................ ................  5%  268M 1s
[ALL  ]      5760K ................ ................ ................  6%  224M 1s
[ALL  ]      6144K ................ ................ ................  6%  227M 1s
[ALL  ]      6528K ................ ................ ................  6%  208M 1s
[ALL  ]      6912K ................ ................ ................  7%  188M 1s
[ALL  ]      7296K ................ ................ ................  7%  175M 1s
[ALL  ]      7680K ................ ................ ................  7%  282M 1s
[ALL  ]      8064K ................ ................ ................  8%  288M 1s
[ALL  ]      8448K ................ ................ ................  8%  240M 1s
[ALL  ]      8832K ................ ................ ................  9%  217M 1s
[ALL  ]      9216K ................ ................ ................  9%  223M 1s
[ALL  ]      9600K ................ ................ ................  9%  237M 1s
[ALL  ]      9984K ................ ................ ................ 10%  258M 1s
[ALL  ]     10368K ................ ................ ................ 10%  231M 1s
[ALL  ]     10752K ................ ................ ................ 10%  282M 1s
[ALL  ]     11136K ................ ................ ................ 11% 94.9M 1s
[ALL  ]     11520K ................ ................ ................ 11%  207M 1s
[ALL  ]     11904K ................ ................ ................ 12%  234M 1s
[ALL  ]     12288K ................ ................ ................ 12%  247M 1s
[ALL  ]     12672K ................ ................ ................ 12%  245M 1s
[ALL  ]     13056K ................ ................ ................ 13%  239M 1s
[ALL  ]     13440K ................ ................ ................ 13%  235M 1s
[ALL  ]     13824K ................ ................ ................ 13%  255M 1s
[ALL  ]     14208K ................ ................ ................ 14%  270M 1s
[ALL  ]     14592K ................ ................ ................ 14%  268M 1s
[ALL  ]     14976K ................ ................ ................ 15%  266M 1s
[ALL  ]     15360K ................ ................ ................ 15%  248M 1s
[ALL  ]     15744K ................ ................ ................ 15%  218M 1s
[ALL  ]     16128K ................ ................ ................ 16%  253M 1s
[ALL  ]     16512K ................ ................ ................ 16%  259M 1s
[ALL  ]     16896K ................ ................ ................ 16%  246M 1s
[ALL  ]     17280K ................ ................ ................ 17%  270M 1s
[ALL  ]     17664K ................ ................ ................ 17%  257M 1s
[ALL  ]     18048K ................ ................ ................ 18%  254M 1s
[ALL  ]     18432K ................ ................ ................ 18%  209M 1s
[ALL  ]     18816K ................ ................ ................ 18%  264M 1s
[ALL  ]     19200K ................ ................ ................ 19%  264M 1s
[ALL  ]     19584K ................ ................ ................ 19%  253M 1s
[ALL  ]     19968K ................ ................ ................ 19%  251M 1s
[ALL  ]     20352K ................ ................ ................ 20%  271M 1s
[ALL  ]     20736K ................ ................ ................ 20%  208M 1s
[ALL  ]     21120K ................ ................ ................ 21%  231M 1s
[ALL  ]     21504K ................ ................ ................ 21%  236M 1s
[ALL  ]     21888K ................ ................ ................ 21%  255M 1s
[ALL  ]     22272K ................ ................ ................ 22%  275M 1s
[ALL  ]     22656K ................ ................ ................ 22%  222M 1s
[ALL  ]     23040K ................ ................ ................ 23%  230M 1s
[ALL  ]     23424K ................ ................ ................ 23%  227M 1s
[ALL  ]     23808K ................ ................ ................ 23%  254M 0s
[ALL  ]     24192K ................ ................ ................ 24%  246M 0s
[ALL  ]     24576K ................ ................ ................ 24%  248M 0s
[ALL  ]     24960K ................ ................ ................ 24%  252M 0s
[ALL  ]     25344K ................ ................ ................ 25%  248M 0s
[ALL  ]     25728K ................ ................ ................ 25%  200M 0s
[ALL  ]     26112K ................ ................ ................ 26%  250M 0s
[ALL  ]     26496K ................ ................ ................ 26%  249M 0s
[ALL  ]     26880K ................ ................ ................ 26%  220M 0s
[ALL  ]     27264K ................ ................ ................ 27%  267M 0s
[ALL  ]     27648K ................ ................ ................ 27%  274M 0s
[ALL  ]     28032K ................ ................ ................ 27%  283M 0s
[ALL  ]     28416K ................ ................ ................ 28%  263M 0s
[ALL  ]     28800K ................ ................ ................ 28%  283M 0s
[ALL  ]     29184K ................ ................ ................ 29%  287M 0s
[ALL  ]     29568K ................ ................ ................ 29%  310M 0s
[ALL  ]     29952K ................ ................ ................ 29%  275M 0s
[ALL  ]     30336K ................ ................ ................ 30%  254M 0s
[ALL  ]     30720K ................ ................ ................ 30%  230M 0s
[ALL  ]     31104K ................ ................ ................ 30%  214M 0s
[ALL  ]     31488K ................ ................ ................ 31%  240M 0s
[ALL  ]     31872K ................ ................ ................ 31%  223M 0s
[ALL  ]     32256K ................ ................ ................ 32%  233M 0s
[ALL  ]     32640K ................ ................ ................ 32%  248M 0s
[ALL  ]     33024K ................ ................ ................ 32%  215M 0s
[ALL  ]     33408K ................ ................ ................ 33%  244M 0s
[ALL  ]     33792K ................ ................ ................ 33%  258M 0s
[ALL  ]     34176K ................ ................ ................ 33%  219M 0s
[ALL  ]     34560K ................ ................ ................ 34%  264M 0s
[ALL  ]     34944K ................ ................ ................ 34%  282M 0s
[ALL  ]     35328K ................ ................ ................ 35%  278M 0s
[ALL  ]     35712K ................ ................ ................ 35%  258M 0s
[ALL  ]     36096K ................ ................ ................ 35%  220M 0s
[ALL  ]     36480K ................ ................ ................ 36%  272M 0s
[ALL  ]     36864K ................ ................ ................ 36%  224M 0s
[ALL  ]     37248K ................ ................ ................ 36%  269M 0s
[ALL  ]     37632K ................ ................ ................ 37%  286M 0s
[ALL  ]     38016K ................ ................ ................ 37%  266M 0s
[ALL  ]     38400K ................ ................ ................ 38%  302M 0s
[ALL  ]     38784K ................ ................ ................ 38%  238M 0s
[ALL  ]     39168K ................ ................ ................ 38%  250M 0s
[ALL  ]     39552K ................ ................ ................ 39%  250M 0s
[ALL  ]     39936K ................ ................ ................ 39%  258M 0s
[ALL  ]     40320K ................ ................ ................ 39%  201M 0s
[ALL  ]     40704K ................ ................ ................ 40%  175M 0s
[ALL  ]     41088K ................ ................ ................ 40%  127M 0s
[ALL  ]     41472K ................ ................ ................ 41%  261M 0s
[ALL  ]     41856K ................ ................ ................ 41%  239M 0s
[ALL  ]     42240K ................ ................ ................ 41%  255M 0s
[ALL  ]     42624K ................ ................ ................ 42%  212M 0s
[ALL  ]     43008K ................ ................ ................ 42%  211M 0s
[ALL  ]     43392K ................ ................ ................ 42%  210M 0s
[ALL  ]     43776K ................ ................ ................ 43%  247M 0s
[ALL  ]     44160K ................ ................ ................ 43%  268M 0s
[ALL  ]     44544K ................ ................ ................ 44%  254M 0s
[ALL  ]     44928K ................ ................ ................ 44%  244M 0s
[ALL  ]     45312K ................ ................ ................ 44%  262M 0s
[ALL  ]     45696K ................ ................ ................ 45%  220M 0s
[ALL  ]     46080K ................ ................ ................ 45%  270M 0s
[ALL  ]     46464K ................ ................ ................ 46%  272M 0s
[ALL  ]     46848K ................ ................ ................ 46%  277M 0s
[ALL  ]     47232K ................ ................ ................ 46%  261M 0s
[ALL  ]     47616K ................ ................ ................ 47%  211M 0s
[ALL  ]     48000K ................ ................ ................ 47%  222M 0s
[ALL  ]     48384K ................ ................ ................ 47%  220M 0s
[ALL  ]     48768K ................ ................ ................ 48%  204M 0s
[ALL  ]     49152K ................ ................ ................ 48%  284M 0s
[ALL  ]     49536K ................ ................ ................ 49%  228M 0s
[ALL  ]     49920K ................ ................ ................ 49%  304M 0s
[ALL  ]     50304K ................ ................ ................ 49%  252M 0s
[ALL  ]     50688K ................ ................ ................ 50%  221M 0s
[ALL  ]     51072K ................ ................ ................ 50%  275M 0s
[ALL  ]     51456K ................ ................ ................ 50%  271M 0s
[ALL  ]     51840K ................ ................ ................ 51%  226M 0s
[ALL  ]     52224K ................ ................ ................ 51%  285M 0s
[ALL  ]     52608K ................ ................ ................ 52%  254M 0s
[ALL  ]     52992K ................ ................ ................ 52%  239M 0s
[ALL  ]     53376K ................ ................ ................ 52%  253M 0s
[ALL  ]     53760K ................ ................ ................ 53%  239M 0s
[ALL  ]     54144K ................ ................ ................ 53%  283M 0s
[ALL  ]     54528K ................ ................ ................ 53%  245M 0s
[ALL  ]     54912K ................ ................ ................ 54%  235M 0s
[ALL  ]     55296K ................ ................ ................ 54%  266M 0s
[ALL  ]     55680K ................ ................ ................ 55%  250M 0s
[ALL  ]     56064K ................ ................ ................ 55%  155M 0s
[ALL  ]     56448K ................ ................ ................ 55%  236M 0s
[ALL  ]     56832K ................ ................ ................ 56%  234M 0s
[ALL  ]     57216K ................ ................ ................ 56%  271M 0s
[ALL  ]     57600K ................ ................ ................ 56%  252M 0s
[ALL  ]     57984K ................ ................ ................ 57%  248M 0s
[ALL  ]     58368K ................ ................ ................ 57%  234M 0s
[ALL  ]     58752K ................ ................ ................ 58%  288M 0s
[ALL  ]     59136K ................ ................ ................ 58%  271M 0s
[ALL  ]     59520K ................ ................ ................ 58%  238M 0s
[ALL  ]     59904K ................ ................ ................ 59%  276M 0s
[ALL  ]     60288K ................ ................ ................ 59%  255M 0s
[ALL  ]     60672K ................ ................ ................ 59%  250M 0s
[ALL  ]     61056K ................ ................ ................ 60%  230M 0s
[ALL  ]     61440K ................ ................ ................ 60%  270M 0s
[ALL  ]     61824K ................ ................ ................ 61%  265M 0s
[ALL  ]     62208K ................ ................ ................ 61%  255M 0s
[ALL  ]     62592K ................ ................ ................ 61%  252M 0s
[ALL  ]     62976K ................ ................ ................ 62%  265M 0s
[ALL  ]     63360K ................ ................ ................ 62%  263M 0s
[ALL  ]     63744K ................ ................ ................ 62%  211M 0s
[ALL  ]     64128K ................ ................ ................ 63%  233M 0s
[ALL  ]     64512K ................ ................ ................ 63%  231M 0s
[ALL  ]     64896K ................ ................ ................ 64%  273M 0s
[ALL  ]     65280K ................ ................ ................ 64%  277M 0s
[ALL  ]     65664K ................ ................ ................ 64%  267M 0s
[ALL  ]     66048K ................ ................ ................ 65%  222M 0s
[ALL  ]     66432K ................ ................ ................ 65%  234M 0s
[ALL  ]     66816K ................ ................ ................ 65%  253M 0s
[ALL  ]     67200K ................ ................ ................ 66%  264M 0s
[ALL  ]     67584K ................ ................ ................ 66%  213M 0s
[ALL  ]     67968K ................ ................ ................ 67%  260M 0s
[ALL  ]     68352K ................ ................ ................ 67%  278M 0s
[ALL  ]     68736K ................ ................ ................ 67%  263M 0s
[ALL  ]     69120K ................ ................ ................ 68%  297M 0s
[ALL  ]     69504K ................ ................ ................ 68%  293M 0s
[ALL  ]     69888K ................ ................ ................ 69%  282M 0s
[ALL  ]     70272K ................ ................ ................ 69%  299M 0s
[ALL  ]     70656K ................ ................ ................ 69%  312M 0s
[ALL  ]     71040K ................ ................ ................ 70%  313M 0s
[ALL  ]     71424K ................ ................ ................ 70%  285M 0s
[ALL  ]     71808K ................ ................ ................ 70%  249M 0s
[ALL  ]     72192K ................ ................ ................ 71%  265M 0s
[ALL  ]     72576K ................ ................ ................ 71%  287M 0s
[ALL  ]     72960K ................ ................ ................ 72%  288M 0s
[ALL  ]     73344K ................ ................ ................ 72%  267M 0s
[ALL  ]     73728K ................ ................ ................ 72%  273M 0s
[ALL  ]     74112K ................ ................ ................ 73%  282M 0s
[ALL  ]     74496K ................ ................ ................ 73%  246M 0s
[ALL  ]     74880K ................ ................ ................ 73%  269M 0s
[ALL  ]     75264K ................ ................ ................ 74%  296M 0s
[ALL  ]     75648K ................ ................ ................ 74%  251M 0s
[ALL  ]     76032K ................ ................ ................ 75%  295M 0s
[ALL  ]     76416K ................ ................ ................ 75%  294M 0s
[ALL  ]     76800K ................ ................ ................ 75%  268M 0s
[ALL  ]     77184K ................ ................ ................ 76%  288M 0s
[ALL  ]     77568K ................ ................ ................ 76%  240M 0s
[ALL  ]     77952K ................ ................ ................ 76%  260M 0s
[ALL  ]     78336K ................ ................ ................ 77%  276M 0s
[ALL  ]     78720K ................ ................ ................ 77%  269M 0s
[ALL  ]     79104K ................ ................ ................ 78%  205M 0s
[ALL  ]     79488K ................ ................ ................ 78%  256M 0s
[ALL  ]     79872K ................ ................ ................ 78%  224M 0s
[ALL  ]     80256K ................ ................ ................ 79%  254M 0s
[ALL  ]     80640K ................ ................ ................ 79%  289M 0s
[ALL  ]     81024K ................ ................ ................ 79%  252M 0s
[ALL  ]     81408K ................ ................ ................ 80%  275M 0s
[ALL  ]     81792K ................ ................ ................ 80%  113M 0s
[ALL  ]     82176K ................ ................ ................ 81% 96.1M 0s
[ALL  ]     82560K ................ ................ ................ 81%  229M 0s
[ALL  ]     82944K ................ ................ ................ 81%  265M 0s
[ALL  ]     83328K ................ ................ ................ 82%  257M 0s
[ALL  ]     83712K ................ ................ ................ 82%  271M 0s
[ALL  ]     84096K ................ ................ ................ 82%  244M 0s
[ALL  ]     84480K ................ ................ ................ 83%  277M 0s
[ALL  ]     84864K ................ ................ ................ 83%  277M 0s
[ALL  ]     85248K ................ ................ ................ 84%  241M 0s
[ALL  ]     85632K ................ ................ ................ 84%  262M 0s
[ALL  ]     86016K ................ ................ ................ 84%  287M 0s
[ALL  ]     86400K ................ ................ ................ 85%  267M 0s
[ALL  ]     86784K ................ ................ ................ 85%  241M 0s
[ALL  ]     87168K ................ ................ ................ 85%  209M 0s
[ALL  ]     87552K ................ ................ ................ 86%  139M 0s
[ALL  ]     87936K ................ ................ ................ 86%  234M 0s
[ALL  ]     88320K ................ ................ ................ 87%  276M 0s
[ALL  ]     88704K ................ ................ ................ 87%  288M 0s
[ALL  ]     89088K ................ ................ ................ 87%  204M 0s
[ALL  ]     89472K ................ ................ ................ 88%  255M 0s
[ALL  ]     89856K ................ ................ ................ 88%  273M 0s
[ALL  ]     90240K ................ ................ ................ 88%  246M 0s
[ALL  ]     90624K ................ ................ ................ 89%  274M 0s
[ALL  ]     91008K ................ ................ ................ 89%  286M 0s
[ALL  ]     91392K ................ ................ ................ 90%  283M 0s
[ALL  ]     91776K ................ ................ ................ 90%  197M 0s
[ALL  ]     92160K ................ ................ ................ 90%  255M 0s
[ALL  ]     92544K ................ ................ ................ 91%  286M 0s
[ALL  ]     92928K ................ ................ ................ 91%  226M 0s
[ALL  ]     93312K ................ ................ ................ 92%  278M 0s
[ALL  ]     93696K ................ ................ ................ 92%  280M 0s
[ALL  ]     94080K ................ ................ ................ 92%  238M 0s
[ALL  ]     94464K ................ ................ ................ 93%  253M 0s
[ALL  ]     94848K ................ ................ ................ 93%  300M 0s
[ALL  ]     95232K ................ ................ ................ 93%  239M 0s
[ALL  ]     95616K ................ ................ ................ 94%  235M 0s
[ALL  ]     96000K ................ ................ ................ 94%  244M 0s
[ALL  ]     96384K ................ ................ ................ 95%  273M 0s
[ALL  ]     96768K ................ ................ ................ 95%  279M 0s
[ALL  ]     97152K ................ ................ ................ 95%  229M 0s
[ALL  ]     97536K ................ ................ ................ 96%  286M 0s
[ALL  ]     97920K ................ ................ ................ 96%  272M 0s
[ALL  ]     98304K ................ ................ ................ 96%  258M 0s
[ALL  ]     98688K ................ ................ ................ 97%  286M 0s
[ALL  ]     99072K ................ ................ ................ 97%  293M 0s
[ALL  ]     99456K ................ ................ ................ 98%  301M 0s
[ALL  ]     99840K ................ ................ ................ 98%  255M 0s
[ALL  ]    100224K ................ ................ ................ 98%  283M 0s
[ALL  ]    100608K ................ ................ ................ 99%  247M 0s
[ALL  ]    100992K ................ ................ ................ 99%  302M 0s
[ALL  ]    101376K ................ ................ ................ 99%  304M 0s
[ALL  ]    101760K .........                                         100%  316M=0.5s
[ALL  ]    
[ALL  ]    2021-05-26 12:15:41 (216 MB/s) - '/tmp/build/.build/tarballs/linux-4.20.8.tar.xz.tmp-dl' saved [104281104/104281104]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'linux-4.20.8.tar.xz'
[EXTRA]    Retrieving 'zlib-1.2.11'
[ALL  ]    --2021-05-26 12:15:41--  http://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.105.38.13
[ALL  ]    Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.105.38.13|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 302 Found
[ALL  ]    Location: https://netactuate.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz [following]
[ALL  ]    --2021-05-26 12:15:42--  https://netactuate.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.xz
[ALL  ]    Resolving netactuate.dl.sourceforge.net (netactuate.dl.sourceforge.net)... 104.225.3.66
[ALL  ]    Connecting to netactuate.dl.sourceforge.net (netactuate.dl.sourceforge.net)|104.225.3.66|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 467960 (457K) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 84% 15.4M 0s
[ALL  ]       384K .........                                         100% 11.3M=0.03s
[ALL  ]    
[ALL  ]    2021-05-26 12:15:42 (14.6 MB/s) - '/tmp/build/.build/tarballs/zlib-1.2.11.tar.xz.tmp-dl' saved [467960/467960]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'zlib-1.2.11.tar.xz'
[EXTRA]    Retrieving 'gmp-6.1.2'
[ALL  ]    --2021-05-26 12:15:42--  https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz
[ALL  ]    Resolving gmplib.org (gmplib.org)... 130.242.124.102
[ALL  ]    Connecting to gmplib.org (gmplib.org)|130.242.124.102|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1946336 (1.9M) [application/octet-stream]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 20%  451K 3s
[ALL  ]       384K ................ ................ ................ 40% 1.77M 2s
[ALL  ]       768K ................ ................ ................ 60% 70.7M 1s
[ALL  ]      1152K ................ ................ ................ 80% 3.51M 0s
[ALL  ]      1536K ................ ................ .............   100% 3.48M=1.3s
[ALL  ]    
[ALL  ]    2021-05-26 12:15:44 (1.45 MB/s) - '/tmp/build/.build/tarballs/gmp-6.1.2.tar.xz.tmp-dl' saved [1946336/1946336]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'gmp-6.1.2.tar.xz'
[EXTRA]    Retrieving 'mpfr-4.0.2'
[ALL  ]    --2021-05-26 12:15:44--  http://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Resolving www.mpfr.org (www.mpfr.org)... 152.81.144.155
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... 301 Moved Permanently
[ALL  ]    Location: https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz [following]
[ALL  ]    --2021-05-26 12:15:44--  https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz
[ALL  ]    Connecting to www.mpfr.org (www.mpfr.org)|152.81.144.155|:443... connected.
[ALL  ]    HTTP request sent, awaiting response... 200 OK
[ALL  ]    Length: 1441996 (1.4M) [application/x-xz]
[ALL  ]    Saving to: '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl'
[ALL  ]    
[ALL  ]         0K ................ ................ ................ 27%  894K 1s
[ALL  ]       384K ................ ................ ................ 54% 4.34M 0s
[ALL  ]       768K ................ ................ ................ 81%  114M 0s
[ALL  ]      1152K ................ ................                 100%  123M=0.5s
[ALL  ]    
[ALL  ]    2021-05-26 12:15:45 (2.64 MB/s) - '/tmp/build/.build/tarballs/mpfr-4.0.2.tar.xz.tmp-dl' saved [1441996/1441996]
[ALL  ]    
[EXTRA]    Verifying SHA512 checksum for 'mpfr-4.0.2.tar.xz'
[EXTRA]    Retrieving 'isl-0.20'
[ALL  ]    --2021-05-26 12:15:45--  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:15:57--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:16:10--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.xz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:16:21--  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:16:32--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:16:44--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.bz2
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Giving up.
[ALL  ]    
[ALL  ]    --2021-05-26 12:16:55--  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Resolving isl.gforge.inria.fr (isl.gforge.inria.fr)... 128.93.193.15
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:17:06--  (try: 2)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... failed: Connection timed out.
[ALL  ]    Retrying.
[ALL  ]    
[ALL  ]    --2021-05-26 12:17:18--  (try: 3)  http://isl.gforge.inria.fr/isl-0.20.tar.gz
[ALL  ]    Connecting to isl.gforge.inria.fr (isl.gforge.inria.fr)|128.93.193.15|:80... connected.
[ALL  ]    HTTP request sent, awaiting response... Read error (Connection timed out) in headers.
[ALL  ]    Giving up.
[ALL  ]    
[ERROR]    isl: download failed
[ERROR]  
[ERROR]  >>
[ERROR]  >>  Build failed in step 'Retrieving needed toolchain components' tarballs'
[ERROR]  >>        called in step '(top-level)'
[ERROR]  >>
[ERROR]  >>  Error happened in: CT_Abort[scripts/functions@487]
[ERROR]  >>        called from: CT_DoFetch[scripts/functions@2103]
[ERROR]  >>        called from: CT_PackageRun[scripts/functions@2063]
[ERROR]  >>        called from: CT_Fetch[scripts/functions@2174]
[ERROR]  >>        called from: do_isl_get[scripts/build/companion_libs/121-isl.sh@16]
[ERROR]  >>        called from: do_companion_libs_get[scripts/build/companion_libs.sh@15]
[ERROR]  >>        called from: main[scripts/crosstool-NG.sh@648]
[ERROR]  >>
[ERROR]  >>  For more info on this error, look at the file: 'build.log'
[ERROR]  >>  There is a list of known issues, some with workarounds, in:
[ERROR]  >>      https://crosstool-ng.github.io/docs/known-issues/
[ERROR]  >>
[ERROR]  >> NOTE: Your configuration includes features marked EXPERIMENTAL.
[ERROR]  >> Before submitting a bug report, try to reproduce it without enabling
[ERROR]  >> any experimental features. Otherwise, you'll need to debug it
[ERROR]  >> and present an explanation why it is a bug in crosstool-NG - or
[ERROR]  >> preferably, a fix.
[ERROR]  >>
[ERROR]  >>  If you feel this is a bug in crosstool-NG, report it at:
[ERROR]  >>      https://github.com/crosstool-ng/crosstool-ng/issues/
[ERROR]  >>
[ERROR]  >>  Make sure your report includes all the information pertinent to this issue.
[ERROR]  >>  Read the bug reporting guidelines here:
[ERROR]  >>      http://crosstool-ng.github.io/support/
[ERROR]  
[ERROR]  (elapsed: 1:51.35)
/usr/local/bin/ct-ng:261: recipe for target 'build' failed
make: *** [build] Error 1
The command '/bin/sh -c ./build-toolchains.sh' returned a non-zero code: 1
##[error]Process completed with exit code 1.
Post job cleanup.

@bors
Copy link
Contributor

bors commented May 26, 2021

⌛ Testing commit 9ee87c7 with merge 41092cfe0490e1af46032edcefa0fcc5ad34bc29...

@Dylan-DPC-zz
Copy link
Author

@bors treeclosed=1000

(discussion: zulip)

@bors
Copy link
Contributor

bors commented May 26, 2021

💔 Test failed - checks-actions

@bors bors 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 May 26, 2021
@rust-log-analyzer
Copy link
Collaborator

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

Click to see the possible cause of the failure (guessed by this bot)
Wed May 26 12:44:30 UTC 2021 - building ...
Wed May 26 12:45:00 UTC 2021 - building ...
ERROR: An error was encountered with the build.

[00:00] / 
[INFO ]  Performing some trivial sanity checks
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[INFO ]  Build started 20210526.124331
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
---
Wed May 26 12:46:21 UTC 2021 - building ...
Wed May 26 12:46:51 UTC 2021 - building ...
ERROR: An error was encountered with the build.

[00:01] / 
[INFO ]  Performing some trivial sanity checks
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[INFO ]  Build started 20210526.124522
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
---
Wed May 26 12:48:11 UTC 2021 - building ...
Wed May 26 12:48:41 UTC 2021 - building ...
ERROR: An error was encountered with the build.

[00:01] / 
[INFO ]  Performing some trivial sanity checks
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[INFO ]  Build started 20210526.124712
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
---
Wed May 26 12:50:32 UTC 2021 - building ...
Wed May 26 12:51:02 UTC 2021 - building ...
ERROR: An error was encountered with the build.

[00:00] / 
[INFO ]  Performing some trivial sanity checks
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[INFO ]  Build started 20210526.124903
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
---
Wed May 26 12:52:51 UTC 2021 - building ...
Wed May 26 12:53:21 UTC 2021 - building ...
ERROR: An error was encountered with the build.

[00:00] / 
[INFO ]  Performing some trivial sanity checks
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[INFO ]  Build started 20210526.125121
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] | 
[00:00] | 
[00:00] | 
[00:00] | 
[00:00] | 
[00:00] | 
[00:00] | 
[00:00] | 
[00:00] | 
[00:00] | 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] / 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] - 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:00] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] \ 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] | 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] / 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 
[00:01] - 

@Dylan-DPC-zz
Copy link
Author

@bors retry p=1000

@bors bors 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 May 26, 2021
@bors
Copy link
Contributor

bors commented May 26, 2021

⌛ Testing commit 9ee87c7 with merge f6a28aa...

@Dylan-DPC-zz
Copy link
Author

@bors treeclosed--

@Dylan-DPC-zz
Copy link
Author

@bors treeclosed-

@bors
Copy link
Contributor

bors commented May 26, 2021

☀️ Test successful - checks-actions
Approved by: Dylan-DPC
Pushing f6a28aa to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label May 26, 2021
@bors bors merged commit f6a28aa into rust-lang:master May 26, 2021
@rustbot rustbot added this to the 1.54.0 milestone May 26, 2021
@Dylan-DPC-zz Dylan-DPC-zz deleted the rollup-in5917x branch May 26, 2021 18:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
merged-by-bors This PR was explicitly merged by bors. rollup A PR which is a rollup S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.