[INFO] crate actix-http 0.2.7 is already in cache [INFO] extracting crate actix-http 0.2.7 into work/ex/beta-1.38-1/sources/1.37.0/reg/actix-http/0.2.7 [INFO] extracting crate actix-http 0.2.7 into work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/actix-http/0.2.7 [INFO] validating manifest of actix-http-0.2.7 on toolchain 1.37.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of actix-http-0.2.7 on toolchain beta-2019-08-13 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing actix-http-0.2.7 [INFO] finished frobbing actix-http-0.2.7 [INFO] frobbed toml for actix-http-0.2.7 written to work/ex/beta-1.38-1/sources/1.37.0/reg/actix-http/0.2.7/Cargo.toml [INFO] started frobbing actix-http-0.2.7 [INFO] finished frobbing actix-http-0.2.7 [INFO] frobbed toml for actix-http-0.2.7 written to work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/actix-http/0.2.7/Cargo.toml [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing actix-http-0.2.7 against 1.37.0 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-5/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/reg/actix-http/0.2.7:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+1.37.0" "build" "--frozen"` [INFO] [stdout] 61c09b5c203fe176cb4202ab4e864f8cd44e7c9f825affbb72f4e4adab051896 [INFO] running `"docker" "start" "-a" "61c09b5c203fe176cb4202ab4e864f8cd44e7c9f825affbb72f4e4adab051896"` [INFO] [stderr] Compiling enum-as-inner v0.2.1 [INFO] [stderr] Compiling derive_more v0.15.0 [INFO] [stderr] Compiling trust-dns-proto v0.7.4 [INFO] [stderr] Compiling actix-threadpool v0.1.2 [INFO] [stderr] Compiling trust-dns-resolver v0.11.1 [INFO] [stderr] Compiling actix-connect v0.2.3 [INFO] [stderr] Compiling actix-http v0.2.7 (/opt/crater/workdir) [INFO] [stderr] warning: unused import: `Write` [INFO] [stderr] --> src/encoding/decoder.rs:1:21 [INFO] [stderr] | [INFO] [stderr] 1 | use std::io::{self, Write}; [INFO] [stderr] | ^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `super::Writer` [INFO] [stderr] --> src/encoding/decoder.rs:11:5 [INFO] [stderr] | [INFO] [stderr] 11 | use super::Writer; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `super::Writer` [INFO] [stderr] --> src/encoding/encoder.rs:17:5 [INFO] [stderr] | [INFO] [stderr] 17 | use super::Writer; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:92:6 [INFO] [stderr] | [INFO] [stderr] 92 | impl ResponseError + 'static { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ResponseError + 'static` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(bare_trait_objects)] on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:96:45 [INFO] [stderr] | [INFO] [stderr] 96 | unsafe { Some(&*(self as *const ResponseError as *const T)) } [INFO] [stderr] | ^^^^^^^^^^^^^ help: use `dyn`: `dyn ResponseError` [INFO] [stderr] [INFO] [stderr] warning: unused import: `Write` [INFO] [stderr] --> src/encoding/encoder.rs:2:21 [INFO] [stderr] | [INFO] [stderr] 2 | use std::io::{self, Write}; [INFO] [stderr] | ^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `data` [INFO] [stderr] --> src/encoding/encoder.rs:230:25 [INFO] [stderr] | [INFO] [stderr] 230 | fn write(&mut self, data: &[u8]) -> Result<(), io::Error> { [INFO] [stderr] | ^^^^ help: consider prefixing with an underscore: `_data` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_variables)] on by default [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `Writer` [INFO] [stderr] --> src/encoding/mod.rs:12:1 [INFO] [stderr] | [INFO] [stderr] 12 | pub(self) struct Writer { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(dead_code)] on by default [INFO] [stderr] [INFO] [stderr] warning: method is never used: `new` [INFO] [stderr] --> src/encoding/mod.rs:17:5 [INFO] [stderr] | [INFO] [stderr] 17 | fn new() -> Writer { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: method is never used: `take` [INFO] [stderr] --> src/encoding/mod.rs:22:5 [INFO] [stderr] | [INFO] [stderr] 22 | fn take(&mut self) -> Bytes { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 33.79s [INFO] running `"docker" "inspect" "61c09b5c203fe176cb4202ab4e864f8cd44e7c9f825affbb72f4e4adab051896"` [INFO] running `"docker" "rm" "-f" "61c09b5c203fe176cb4202ab4e864f8cd44e7c9f825affbb72f4e4adab051896"` [INFO] [stdout] 61c09b5c203fe176cb4202ab4e864f8cd44e7c9f825affbb72f4e4adab051896 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-5/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/reg/actix-http/0.2.7:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+1.37.0" "test" "--frozen" "--no-run"` [INFO] [stdout] c981c245c9f1de77e0d60d35a7f1e9a19d31fd19565f8a5977d17fd82516a9a9 [INFO] running `"docker" "start" "-a" "c981c245c9f1de77e0d60d35a7f1e9a19d31fd19565f8a5977d17fd82516a9a9"` [INFO] [stderr] Compiling serde_urlencoded v0.6.1 [INFO] [stderr] Compiling actix-rt v0.2.4 [INFO] [stderr] Compiling actix-http v0.2.9 [INFO] [stderr] Compiling actix-server v0.6.0 [INFO] [stderr] Compiling awc v0.2.4 [INFO] [stderr] Compiling actix-http-test v0.2.4 [INFO] [stderr] Compiling actix-http v0.2.7 (/opt/crater/workdir) [INFO] [stderr] warning: unused import: `AsyncRead` [INFO] [stderr] --> tests/test_server.rs:5:19 [INFO] [stderr] | [INFO] [stderr] 5 | use actix_codec::{AsyncRead, AsyncWrite}; [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `BytesMut` [INFO] [stderr] --> tests/test_server.rs:9:20 [INFO] [stderr] | [INFO] [stderr] 9 | use bytes::{Bytes, BytesMut}; [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `actix_http::error::PayloadError` [INFO] [stderr] --> tests/test_server.rs:15:5 [INFO] [stderr] | [INFO] [stderr] 15 | use actix_http::error::PayloadError; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `AsyncWrite` [INFO] [stderr] --> tests/test_server.rs:5:30 [INFO] [stderr] | [INFO] [stderr] 5 | use actix_codec::{AsyncRead, AsyncWrite}; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `Write` [INFO] [stderr] --> src/encoding/decoder.rs:1:21 [INFO] [stderr] | [INFO] [stderr] 1 | use std::io::{self, Write}; [INFO] [stderr] | ^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `super::Writer` [INFO] [stderr] --> src/encoding/decoder.rs:11:5 [INFO] [stderr] | [INFO] [stderr] 11 | use super::Writer; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `super::Writer` [INFO] [stderr] --> src/encoding/encoder.rs:17:5 [INFO] [stderr] | [INFO] [stderr] 17 | use super::Writer; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:92:6 [INFO] [stderr] | [INFO] [stderr] 92 | impl ResponseError + 'static { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ResponseError + 'static` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(bare_trait_objects)] on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:96:45 [INFO] [stderr] | [INFO] [stderr] 96 | unsafe { Some(&*(self as *const ResponseError as *const T)) } [INFO] [stderr] | ^^^^^^^^^^^^^ help: use `dyn`: `dyn ResponseError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:1075:24 [INFO] [stderr] | [INFO] [stderr] 1075 | let resp_err: &ResponseError = &err; [INFO] [stderr] | ^^^^^^^^^^^^^ help: use `dyn`: `dyn ResponseError` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> tests/test_ws.rs:47:31 [INFO] [stderr] | [INFO] [stderr] 47 | .block_on(framed.send(ws::Message::Text("text".to_string()))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `actix_http::ws::codec::Message`, found a different enum `actix_http::ws::codec::Message` [INFO] [stderr] | [INFO] [stderr] = note: expected type `actix_http::ws::codec::Message` (enum `actix_http::ws::codec::Message`) [INFO] [stderr] found type `actix_http::ws::codec::Message` (enum `actix_http::ws::codec::Message`) [INFO] [stderr] note: Perhaps two different versions of crate `actix_http` are being used? [INFO] [stderr] --> tests/test_ws.rs:47:31 [INFO] [stderr] | [INFO] [stderr] 47 | .block_on(framed.send(ws::Message::Text("text".to_string()))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> tests/test_ws.rs:50:5 [INFO] [stderr] | [INFO] [stderr] 50 | assert_eq!(item, Some(ws::Frame::Text(Some(BytesMut::from("text"))))); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `actix_http::ws::codec::Frame`, found a different enum `actix_http::ws::codec::Frame` [INFO] [stderr] | [INFO] [stderr] = note: expected type `std::option::Option` (enum `actix_http::ws::codec::Frame`) [INFO] [stderr] found type `std::option::Option` (enum `actix_http::ws::codec::Frame`) [INFO] [stderr] note: Perhaps two different versions of crate `actix_http` are being used? [INFO] [stderr] --> tests/test_ws.rs:50:5 [INFO] [stderr] | [INFO] [stderr] 50 | assert_eq!(item, Some(ws::Frame::Text(Some(BytesMut::from("text"))))); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> tests/test_ws.rs:53:31 [INFO] [stderr] | [INFO] [stderr] 53 | .block_on(framed.send(ws::Message::Binary("text".into()))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `actix_http::ws::codec::Message`, found a different enum `actix_http::ws::codec::Message` [INFO] [stderr] | [INFO] [stderr] = note: expected type `actix_http::ws::codec::Message` (enum `actix_http::ws::codec::Message`) [INFO] [stderr] found type `actix_http::ws::codec::Message` (enum `actix_http::ws::codec::Message`) [INFO] [stderr] note: Perhaps two different versions of crate `actix_http` are being used? [INFO] [stderr] --> tests/test_ws.rs:53:31 [INFO] [stderr] | [INFO] [stderr] 53 | .block_on(framed.send(ws::Message::Binary("text".into()))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> tests/test_ws.rs:56:5 [INFO] [stderr] | [INFO] [stderr] 56 | / assert_eq!( [INFO] [stderr] 57 | | item, [INFO] [stderr] 58 | | Some(ws::Frame::Binary(Some(Bytes::from_static(b"text").into()))) [INFO] [stderr] 59 | | ); [INFO] [stderr] | |______^ expected enum `actix_http::ws::codec::Frame`, found a different enum `actix_http::ws::codec::Frame` [INFO] [stderr] | [INFO] [stderr] = note: expected type `std::option::Option` (enum `actix_http::ws::codec::Frame`) [INFO] [stderr] found type `std::option::Option` (enum `actix_http::ws::codec::Frame`) [INFO] [stderr] note: Perhaps two different versions of crate `actix_http` are being used? [INFO] [stderr] --> tests/test_ws.rs:56:5 [INFO] [stderr] | [INFO] [stderr] 56 | / assert_eq!( [INFO] [stderr] 57 | | item, [INFO] [stderr] 58 | | Some(ws::Frame::Binary(Some(Bytes::from_static(b"text").into()))) [INFO] [stderr] 59 | | ); [INFO] [stderr] | |______^ [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> tests/test_ws.rs:62:31 [INFO] [stderr] | [INFO] [stderr] 62 | .block_on(framed.send(ws::Message::Ping("text".into()))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `actix_http::ws::codec::Message`, found a different enum `actix_http::ws::codec::Message` [INFO] [stderr] | [INFO] [stderr] = note: expected type `actix_http::ws::codec::Message` (enum `actix_http::ws::codec::Message`) [INFO] [stderr] found type `actix_http::ws::codec::Message` (enum `actix_http::ws::codec::Message`) [INFO] [stderr] note: Perhaps two different versions of crate `actix_http` are being used? [INFO] [stderr] --> tests/test_ws.rs:62:31 [INFO] [stderr] | [INFO] [stderr] 62 | .block_on(framed.send(ws::Message::Ping("text".into()))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> tests/test_ws.rs:65:5 [INFO] [stderr] | [INFO] [stderr] 65 | assert_eq!(item, Some(ws::Frame::Pong("text".to_string().into()))); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `actix_http::ws::codec::Frame`, found a different enum `actix_http::ws::codec::Frame` [INFO] [stderr] | [INFO] [stderr] = note: expected type `std::option::Option` (enum `actix_http::ws::codec::Frame`) [INFO] [stderr] found type `std::option::Option` (enum `actix_http::ws::codec::Frame`) [INFO] [stderr] note: Perhaps two different versions of crate `actix_http` are being used? [INFO] [stderr] --> tests/test_ws.rs:65:5 [INFO] [stderr] | [INFO] [stderr] 65 | assert_eq!(item, Some(ws::Frame::Pong("text".to_string().into()))); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> tests/test_ws.rs:68:31 [INFO] [stderr] | [INFO] [stderr] 68 | .block_on(framed.send(ws::Message::Close(Some(ws::CloseCode::Normal.into())))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `actix_http::ws::codec::Message`, found a different enum `actix_http::ws::codec::Message` [INFO] [stderr] | [INFO] [stderr] = note: expected type `actix_http::ws::codec::Message` (enum `actix_http::ws::codec::Message`) [INFO] [stderr] found type `actix_http::ws::codec::Message` (enum `actix_http::ws::codec::Message`) [INFO] [stderr] note: Perhaps two different versions of crate `actix_http` are being used? [INFO] [stderr] --> tests/test_ws.rs:68:31 [INFO] [stderr] | [INFO] [stderr] 68 | .block_on(framed.send(ws::Message::Close(Some(ws::CloseCode::Normal.into())))) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> tests/test_ws.rs:72:5 [INFO] [stderr] | [INFO] [stderr] 72 | / assert_eq!( [INFO] [stderr] 73 | | item, [INFO] [stderr] 74 | | Some(ws::Frame::Close(Some(ws::CloseCode::Normal.into()))) [INFO] [stderr] 75 | | ); [INFO] [stderr] | |______^ expected enum `actix_http::ws::codec::Frame`, found a different enum `actix_http::ws::codec::Frame` [INFO] [stderr] | [INFO] [stderr] = note: expected type `std::option::Option` (enum `actix_http::ws::codec::Frame`) [INFO] [stderr] found type `std::option::Option` (enum `actix_http::ws::codec::Frame`) [INFO] [stderr] note: Perhaps two different versions of crate `actix_http` are being used? [INFO] [stderr] --> tests/test_ws.rs:72:5 [INFO] [stderr] | [INFO] [stderr] 72 | / assert_eq!( [INFO] [stderr] 73 | | item, [INFO] [stderr] 74 | | Some(ws::Frame::Close(Some(ws::CloseCode::Normal.into()))) [INFO] [stderr] 75 | | ); [INFO] [stderr] | |______^ [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to 8 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0308`. [INFO] [stderr] error: Could not compile `actix-http`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: Could not compile `actix-http`. [INFO] [stderr] [INFO] [stderr] Caused by: [INFO] [stderr] process didn't exit successfully: `rustc --edition=2018 --crate-name test_server tests/test_server.rs --color never --emit=dep-info,link -C debuginfo=2 --test --cfg 'feature="default"' -C metadata=b6e8893f6d8bdc22 -C extra-filename=-b6e8893f6d8bdc22 --out-dir /opt/crater/target/debug/deps -L dependency=/opt/crater/target/debug/deps --extern actix_codec=/opt/crater/target/debug/deps/libactix_codec-a51ef8db5bdb2c8a.rlib --extern actix_connect=/opt/crater/target/debug/deps/libactix_connect-cfb4f7c50f0f175f.rlib --extern actix_http=/opt/crater/target/debug/deps/libactix_http-384096f387669fbd.rlib --extern actix_http_test=/opt/crater/target/debug/deps/libactix_http_test-ea2075b4cced2a0a.rlib --extern actix_rt=/opt/crater/target/debug/deps/libactix_rt-1c2cb99315b8ed53.rlib --extern actix_server=/opt/crater/target/debug/deps/libactix_server-fea95d4356ccfacb.rlib --extern actix_server_config=/opt/crater/target/debug/deps/libactix_server_config-fb728bcd30fd0f48.rlib --extern actix_service=/opt/crater/target/debug/deps/libactix_service-0a7adc2b0243323b.rlib --extern actix_threadpool=/opt/crater/target/debug/deps/libactix_threadpool-bc4bd01f232f2b25.rlib --extern actix_utils=/opt/crater/target/debug/deps/libactix_utils-8833800e0814ebd9.rlib --extern base64=/opt/crater/target/debug/deps/libbase64-b248d06447d2c6c2.rlib --extern bitflags=/opt/crater/target/debug/deps/libbitflags-bcd34e8f74846360.rlib --extern byteorder=/opt/crater/target/debug/deps/libbyteorder-585fd2581aa01382.rlib --extern bytes=/opt/crater/target/debug/deps/libbytes-5606c44df78b5c7a.rlib --extern chrono=/opt/crater/target/debug/deps/libchrono-2af01fbc0a73eccc.rlib --extern copyless=/opt/crater/target/debug/deps/libcopyless-6777c7156645abda.rlib --extern derive_more=/opt/crater/target/debug/deps/libderive_more-6430b71dfc6ba3a4.so --extern either=/opt/crater/target/debug/deps/libeither-718ea347c7788d34.rlib --extern encoding_rs=/opt/crater/target/debug/deps/libencoding_rs-9520a36bfdc8bdfc.rlib --extern env_logger=/opt/crater/target/debug/deps/libenv_logger-496125452bd0d87b.rlib --extern futures=/opt/crater/target/debug/deps/libfutures-2204f6374ace2c39.rlib --extern h2=/opt/crater/target/debug/deps/libh2-275cdd906ec5ecea.rlib --extern hashbrown=/opt/crater/target/debug/deps/libhashbrown-3e7e9e24cb7aca02.rlib --extern http=/opt/crater/target/debug/deps/libhttp-cf48fd6c10a2edad.rlib --extern httparse=/opt/crater/target/debug/deps/libhttparse-edd6757da9f4355f.rlib --extern indexmap=/opt/crater/target/debug/deps/libindexmap-b695f4379dbb1f0f.rlib --extern language_tags=/opt/crater/target/debug/deps/liblanguage_tags-31855a1d4a2b270f.rlib --extern lazy_static=/opt/crater/target/debug/deps/liblazy_static-eb33edc716f69401.rlib --extern log=/opt/crater/target/debug/deps/liblog-55cfa8f7ed258bff.rlib --extern mime=/opt/crater/target/debug/deps/libmime-2ad0b7e042b7ff0c.rlib --extern openssl=/opt/crater/target/debug/deps/libopenssl-11c37783e98fe9ec.rlib --extern percent_encoding=/opt/crater/target/debug/deps/libpercent_encoding-7ae675a5263db170.rlib --extern rand=/opt/crater/target/debug/deps/librand-649ad4be86f3940f.rlib --extern regex=/opt/crater/target/debug/deps/libregex-3f288169bf5fc935.rlib --extern serde=/opt/crater/target/debug/deps/libserde-3a1343e806eb8450.rlib --extern serde_derive=/opt/crater/target/debug/deps/libserde_derive-8525889763034810.so --extern serde_json=/opt/crater/target/debug/deps/libserde_json-f6b540ffea90773e.rlib --extern serde_urlencoded=/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib --extern sha1=/opt/crater/target/debug/deps/libsha1-39b1a0de906cd753.rlib --extern slab=/opt/crater/target/debug/deps/libslab-38e1dff674bc2c67.rlib --extern time=/opt/crater/target/debug/deps/libtime-29b9853d922d9d06.rlib --extern tokio_current_thread=/opt/crater/target/debug/deps/libtokio_current_thread-9f8eef7684cef0ea.rlib --extern tokio_tcp=/opt/crater/target/debug/deps/libtokio_tcp-abea3e3b1e9489e6.rlib --extern tokio_timer=/opt/crater/target/debug/deps/libtokio_timer-c93f6415d850a3a5.rlib --extern trust_dns_resolver=/opt/crater/target/debug/deps/libtrust_dns_resolver-e1aed52ac7f456bc.rlib --cap-lints=warn -L native=/opt/crater/target/debug/build/backtrace-sys-5c81d3694d492bc0/out -L native=/opt/crater/target/debug/build/brotli-sys-d6e70083c16f6e1a/out -L native=/opt/crater/target/debug/build/miniz-sys-5ae27cb3fc5ef2d5/out` (signal: 9, SIGKILL: kill) [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: unused import: `Write` [INFO] [stderr] --> src/encoding/encoder.rs:2:21 [INFO] [stderr] | [INFO] [stderr] 2 | use std::io::{self, Write}; [INFO] [stderr] | ^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `data` [INFO] [stderr] --> src/encoding/encoder.rs:230:25 [INFO] [stderr] | [INFO] [stderr] 230 | fn write(&mut self, data: &[u8]) -> Result<(), io::Error> { [INFO] [stderr] | ^^^^ help: consider prefixing with an underscore: `_data` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_variables)] on by default [INFO] [stderr] [INFO] [stderr] error: Could not compile `actix-http`. [INFO] [stderr] [INFO] [stderr] Caused by: [INFO] [stderr] process didn't exit successfully: `rustc --edition=2018 --crate-name actix_http src/lib.rs --color never --emit=dep-info,link -C debuginfo=2 --test --cfg 'feature="default"' -C metadata=49581b9e787deac0 -C extra-filename=-49581b9e787deac0 --out-dir /opt/crater/target/debug/deps -L dependency=/opt/crater/target/debug/deps --extern actix_codec=/opt/crater/target/debug/deps/libactix_codec-a51ef8db5bdb2c8a.rlib --extern actix_connect=/opt/crater/target/debug/deps/libactix_connect-cfb4f7c50f0f175f.rlib --extern actix_http_test=/opt/crater/target/debug/deps/libactix_http_test-ea2075b4cced2a0a.rlib --extern actix_rt=/opt/crater/target/debug/deps/libactix_rt-1c2cb99315b8ed53.rlib --extern actix_server=/opt/crater/target/debug/deps/libactix_server-fea95d4356ccfacb.rlib --extern actix_server_config=/opt/crater/target/debug/deps/libactix_server_config-fb728bcd30fd0f48.rlib --extern actix_service=/opt/crater/target/debug/deps/libactix_service-0a7adc2b0243323b.rlib --extern actix_threadpool=/opt/crater/target/debug/deps/libactix_threadpool-bc4bd01f232f2b25.rlib --extern actix_utils=/opt/crater/target/debug/deps/libactix_utils-8833800e0814ebd9.rlib --extern base64=/opt/crater/target/debug/deps/libbase64-b248d06447d2c6c2.rlib --extern bitflags=/opt/crater/target/debug/deps/libbitflags-bcd34e8f74846360.rlib --extern byteorder=/opt/crater/target/debug/deps/libbyteorder-585fd2581aa01382.rlib --extern bytes=/opt/crater/target/debug/deps/libbytes-5606c44df78b5c7a.rlib --extern chrono=/opt/crater/target/debug/deps/libchrono-2af01fbc0a73eccc.rlib --extern copyless=/opt/crater/target/debug/deps/libcopyless-6777c7156645abda.rlib --extern derive_more=/opt/crater/target/debug/deps/libderive_more-6430b71dfc6ba3a4.so --extern either=/opt/crater/target/debug/deps/libeither-718ea347c7788d34.rlib --extern encoding_rs=/opt/crater/target/debug/deps/libencoding_rs-9520a36bfdc8bdfc.rlib --extern env_logger=/opt/crater/target/debug/deps/libenv_logger-496125452bd0d87b.rlib --extern futures=/opt/crater/target/debug/deps/libfutures-2204f6374ace2c39.rlib --extern h2=/opt/crater/target/debug/deps/libh2-275cdd906ec5ecea.rlib --extern hashbrown=/opt/crater/target/debug/deps/libhashbrown-3e7e9e24cb7aca02.rlib --extern http=/opt/crater/target/debug/deps/libhttp-cf48fd6c10a2edad.rlib --extern httparse=/opt/crater/target/debug/deps/libhttparse-edd6757da9f4355f.rlib --extern indexmap=/opt/crater/target/debug/deps/libindexmap-b695f4379dbb1f0f.rlib --extern language_tags=/opt/crater/target/debug/deps/liblanguage_tags-31855a1d4a2b270f.rlib --extern lazy_static=/opt/crater/target/debug/deps/liblazy_static-eb33edc716f69401.rlib --extern log=/opt/crater/target/debug/deps/liblog-55cfa8f7ed258bff.rlib --extern mime=/opt/crater/target/debug/deps/libmime-2ad0b7e042b7ff0c.rlib --extern openssl=/opt/crater/target/debug/deps/libopenssl-11c37783e98fe9ec.rlib --extern percent_encoding=/opt/crater/target/debug/deps/libpercent_encoding-7ae675a5263db170.rlib --extern rand=/opt/crater/target/debug/deps/librand-649ad4be86f3940f.rlib --extern regex=/opt/crater/target/debug/deps/libregex-3f288169bf5fc935.rlib --extern serde=/opt/crater/target/debug/deps/libserde-3a1343e806eb8450.rlib --extern serde_derive=/opt/crater/target/debug/deps/libserde_derive-8525889763034810.so --extern serde_json=/opt/crater/target/debug/deps/libserde_json-f6b540ffea90773e.rlib --extern serde_urlencoded=/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib --extern sha1=/opt/crater/target/debug/deps/libsha1-39b1a0de906cd753.rlib --extern slab=/opt/crater/target/debug/deps/libslab-38e1dff674bc2c67.rlib --extern time=/opt/crater/target/debug/deps/libtime-29b9853d922d9d06.rlib --extern tokio_current_thread=/opt/crater/target/debug/deps/libtokio_current_thread-9f8eef7684cef0ea.rlib --extern tokio_tcp=/opt/crater/target/debug/deps/libtokio_tcp-abea3e3b1e9489e6.rlib --extern tokio_timer=/opt/crater/target/debug/deps/libtokio_timer-c93f6415d850a3a5.rlib --extern trust_dns_resolver=/opt/crater/target/debug/deps/libtrust_dns_resolver-e1aed52ac7f456bc.rlib --cap-lints=warn -L native=/opt/crater/target/debug/build/backtrace-sys-5c81d3694d492bc0/out -L native=/opt/crater/target/debug/build/brotli-sys-d6e70083c16f6e1a/out -L native=/opt/crater/target/debug/build/miniz-sys-5ae27cb3fc5ef2d5/out` (signal: 9, SIGKILL: kill) [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.hello_world.6ins4tp6-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c" "/opt/crater/target/debug/examples/hello_world-209c3f67ed31c90c.5c43lb88ima2sscq.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/target/debug/build/backtrace-sys-5c81d3694d492bc0/out" "-L" "/opt/crater/target/debug/build/brotli-sys-d6e70083c16f6e1a/out" "-L" "/opt/crater/target/debug/build/miniz-sys-5ae27cb3fc5ef2d5/out" "-L" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libenv_logger-496125452bd0d87b.rlib" "/opt/crater/target/debug/deps/libatty-eb5da56e70a939cc.rlib" "/opt/crater/target/debug/deps/libhumantime-f3229d51b2810709.rlib" "/opt/crater/target/debug/deps/libtermcolor-63bd51856c425668.rlib" "/opt/crater/target/debug/deps/libactix_server-fea95d4356ccfacb.rlib" "/opt/crater/target/debug/deps/libtokio_signal-9bd2609d51627a00.rlib" "/opt/crater/target/debug/deps/libsignal_hook-8ccce9ebd8386df6.rlib" "/opt/crater/target/debug/deps/libsignal_hook_registry-a10a69e99957c04c.rlib" "/opt/crater/target/debug/deps/libarc_swap-4c331ef759e4d015.rlib" "/opt/crater/target/debug/deps/libmio_uds-f6319a558176422a.rlib" "/opt/crater/target/debug/deps/libactix_rt-1c2cb99315b8ed53.rlib" "/opt/crater/target/debug/deps/libactix_http-384096f387669fbd.rlib" "/opt/crater/target/debug/deps/libsha1-39b1a0de906cd753.rlib" "/opt/crater/target/debug/deps/libbase64-b248d06447d2c6c2.rlib" "/opt/crater/target/debug/deps/librand-649ad4be86f3940f.rlib" "/opt/crater/target/debug/deps/librand_chacha-0460b9813a543354.rlib" "/opt/crater/target/debug/deps/libc2_chacha-482fc8ce59b9bcb9.rlib" "/opt/crater/target/debug/deps/libppv_lite86-689a570bc058b143.rlib" "/opt/crater/target/debug/deps/librand_core-f11b7cbcf193156d.rlib" "/opt/crater/target/debug/deps/libgetrandom-ee0bcb0c0b4efe0d.rlib" "/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib" "/opt/crater/target/debug/deps/libdtoa-8ca04c299b5dbe41.rlib" "/opt/crater/target/debug/deps/libhttparse-edd6757da9f4355f.rlib" "/opt/crater/target/debug/deps/libchrono-2af01fbc0a73eccc.rlib" "/opt/crater/target/debug/deps/libnum_integer-283a7abc0f1061b4.rlib" "/opt/crater/target/debug/deps/libnum_traits-834021e24a52ff2b.rlib" "/opt/crater/target/debug/deps/libserde_json-f6b540ffea90773e.rlib" "/opt/crater/target/debug/deps/libryu-be578719e5bf2327.rlib" "/opt/crater/target/debug/deps/libserde-3a1343e806eb8450.rlib" "/opt/crater/target/debug/deps/libcopyless-6777c7156645abda.rlib" "/opt/crater/target/debug/deps/libencoding_rs-9520a36bfdc8bdfc.rlib" "/opt/crater/target/debug/deps/libregex-3f288169bf5fc935.rlib" "/opt/crater/target/debug/deps/libregex_syntax-74b9e606898eafee.rlib" "/opt/crater/target/debug/deps/libthread_local-1801494cfc15e4c0.rlib" "/opt/crater/target/debug/deps/libaho_corasick-05f4d1fa22c64ffe.rlib" "/opt/crater/target/debug/deps/libmemchr-5970d48417368191.rlib" "/opt/crater/target/debug/deps/liblanguage_tags-31855a1d4a2b270f.rlib" "/opt/crater/target/debug/deps/libmime-2ad0b7e042b7ff0c.rlib" "/opt/crater/target/debug/deps/libunicase-9d7982dbb3c6947a.rlib" "/opt/crater/target/debug/deps/libactix_threadpool-bc4bd01f232f2b25.rlib" "/opt/crater/target/debug/deps/libthreadpool-4d589970c849f5a0.rlib" "/opt/crater/target/debug/deps/libparking_lot-10bb98feb38d456e.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-2d59d8d5d5bcab48.rlib" "/opt/crater/target/debug/deps/liblock_api-c0011194a4ef456e.rlib" "/opt/crater/target/debug/deps/libscopeguard-9b5b548023a82ae4.rlib" "/opt/crater/target/debug/deps/libtime-29b9853d922d9d06.rlib" "/opt/crater/target/debug/deps/libhashbrown-3e7e9e24cb7aca02.rlib" "/opt/crater/target/debug/deps/libactix_utils-8833800e0814ebd9.rlib" "/opt/crater/target/debug/deps/libactix_connect-cfb4f7c50f0f175f.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-9f8eef7684cef0ea.rlib" "/opt/crater/target/debug/deps/libtrust_dns_resolver-e1aed52ac7f456bc.rlib" "/opt/crater/target/debug/deps/libtrust_dns_proto-e6304e28299b35bd.rlib" "/opt/crater/target/debug/deps/liburl-ebaefb0ef9c8c191.rlib" "/opt/crater/target/debug/deps/libpercent_encoding-7ae675a5263db170.rlib" "/opt/crater/target/debug/deps/libtokio_udp-9fdc8a48dfc85b82.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c93f6415d850a3a5.rlib" "/opt/crater/target/debug/deps/libsocket2-b70aeebd5fe6b020.rlib" "/opt/crater/target/debug/deps/libidna-52fbc9ef9e77809d.rlib" "/opt/crater/target/debug/deps/libunicode_normalization-3ac46972447058ab.rlib" "/opt/crater/target/debug/deps/libunicode_bidi-ad8beb3a11009df0.rlib" "/opt/crater/target/debug/deps/libmatches-5962f64d87545c04.rlib" "/opt/crater/target/debug/deps/libresolv_conf-db2625ffe0bb78a3.rlib" "/opt/crater/target/debug/deps/libhostname-35543ca7cf7bd409.rlib" "/opt/crater/target/debug/deps/libquick_error-a2165722eb49e44c.rlib" "/opt/crater/target/debug/deps/liblru_cache-36b5e01acff7ba94.rlib" "/opt/crater/target/debug/deps/liblinked_hash_map-3e4fdc964a0eef39.rlib" "/opt/crater/target/debug/deps/libfailure-d111ede8b4b28ffa.rlib" "/opt/crater/target/debug/deps/libbacktrace-b55b2db5d65cb8a4.rlib" "/opt/crater/target/debug/deps/libbacktrace_sys-01c69401428504e5.rlib" "/opt/crater/target/debug/deps/librustc_demangle-dd44235a42da0b4e.rlib" "/opt/crater/target/debug/deps/libeither-718ea347c7788d34.rlib" "/opt/crater/target/debug/deps/libh2-275cdd906ec5ecea.rlib" "/opt/crater/target/debug/deps/libindexmap-b695f4379dbb1f0f.rlib" "/opt/crater/target/debug/deps/libstring-8ad5ccb084f8293f.rlib" "/opt/crater/target/debug/deps/libhttp-cf48fd6c10a2edad.rlib" "/opt/crater/target/debug/deps/libitoa-d35f0a89557c3310.rlib" "/opt/crater/target/debug/deps/libactix_service-0a7adc2b0243323b.rlib" "/opt/crater/target/debug/deps/libactix_server_config-fb728bcd30fd0f48.rlib" "/opt/crater/target/debug/deps/libtokio_openssl-2253461ad1f37cb2.rlib" "/opt/crater/target/debug/deps/libopenssl-11c37783e98fe9ec.rlib" "/opt/crater/target/debug/deps/libopenssl_sys-69f752e5ebbdfef0.rlib" "/opt/crater/target/debug/deps/libforeign_types-2a1e48607c06fed3.rlib" "/opt/crater/target/debug/deps/libforeign_types_shared-ba70a268c095ba50.rlib" "/opt/crater/target/debug/deps/libbitflags-bcd34e8f74846360.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-abea3e3b1e9489e6.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-b71211fa47e02d37.rlib" "/opt/crater/target/debug/deps/libtokio_sync-be5eabd68f6f693c.rlib" "/opt/crater/target/debug/deps/libfnv-0b54693efaf27e2a.rlib" "/opt/crater/target/debug/deps/libtokio_executor-45f8f98c41472383.rlib" "/opt/crater/target/debug/deps/libparking_lot-e180e0ce0226a4b0.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-72821d80cb7b7770.rlib" "/opt/crater/target/debug/deps/libsmallvec-8ab4c1b4228c68ef.rlib" "/opt/crater/target/debug/deps/librand-4d2dd95f3d7aec75.rlib" "/opt/crater/target/debug/deps/librand_xorshift-4203f3157eb9a8e3.rlib" "/opt/crater/target/debug/deps/librand_pcg-8d4de0bb8369ce1b.rlib" "/opt/crater/target/debug/deps/librand_hc-bbd146a4b8bf6f4b.rlib" "/opt/crater/target/debug/deps/librand_chacha-e30594121fba25f8.rlib" "/opt/crater/target/debug/deps/librand_isaac-116c1a9914320278.rlib" "/opt/crater/target/debug/deps/librand_core-5fd440ec9008cce1.rlib" "/opt/crater/target/debug/deps/librand_os-df63c8a890c1e2e9.rlib" "/opt/crater/target/debug/deps/librand_jitter-06f1043e9c10514f.rlib" "/opt/crater/target/debug/deps/librand_core-fe4fc41bf9015dbc.rlib" "/opt/crater/target/debug/deps/liblock_api-494f6f1561bbf82e.rlib" "/opt/crater/target/debug/deps/libowning_ref-effe362413e7ab7d.rlib" "/opt/crater/target/debug/deps/libstable_deref_trait-d0a4946e4c2703bb.rlib" "/opt/crater/target/debug/deps/libscopeguard-316f896e0d3e978a.rlib" "/opt/crater/target/debug/deps/libnum_cpus-509d1090a02489e2.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-c7636b44f63f0536.rlib" "/opt/crater/target/debug/deps/liblazy_static-eb33edc716f69401.rlib" "/opt/crater/target/debug/deps/libmio-0e2bc1a0dc1217dc.rlib" "/opt/crater/target/debug/deps/libslab-38e1dff674bc2c67.rlib" "/opt/crater/target/debug/deps/libnet2-629edbfe8fd82654.rlib" "/opt/crater/target/debug/deps/libactix_codec-a51ef8db5bdb2c8a.rlib" "/opt/crater/target/debug/deps/libtokio_codec-e1291b902f796713.rlib" "/opt/crater/target/debug/deps/libtokio_io-12d50d265e1b1342.rlib" "/opt/crater/target/debug/deps/libfutures-2204f6374ace2c39.rlib" "/opt/crater/target/debug/deps/libbytes-5606c44df78b5c7a.rlib" "/opt/crater/target/debug/deps/libiovec-0aff63894148ec6b.rlib" "/opt/crater/target/debug/deps/liblibc-d019039477cac03b.rlib" "/opt/crater/target/debug/deps/libbyteorder-585fd2581aa01382.rlib" "/opt/crater/target/debug/deps/liblog-55cfa8f7ed258bff.rlib" "/opt/crater/target/debug/deps/libcfg_if-3028bdd7b8e15bb5.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-4a76ff35a356aedf.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e11c7b3b3225afe2.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-13217ede3d276f16.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-621a9ee22da6caa1.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-546c844e8071bbeb.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-be9569e4d599746f.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-47d8845cef2a3bc5.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-017511bce73a530c.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-be7979c57a08057b.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-d6459c4f0817c67c.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-580035dd98451925.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-aee5c24fff305dea.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-8a55a4098920125a.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-9fc4b5be2ba5cc19.rlib" "-Wl,-Bdynamic" "-lssl" "-lcrypto" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: BFD (GNU Binutils for Debian) 2.28 internal error, aborting at ../../bfd/merge.c:908 in _bfd_merged_section_offset [INFO] [stderr] [INFO] [stderr] /usr/bin/ld: Please report this bug. [INFO] [stderr] [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `actix-http`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/echo-6c064328198574d3.echo.al4rapew-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/echo-6c064328198574d3" "/opt/crater/target/debug/examples/echo-6c064328198574d3.4sle8uwm9uervaxu.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/target/debug/build/backtrace-sys-5c81d3694d492bc0/out" "-L" "/opt/crater/target/debug/build/brotli-sys-d6e70083c16f6e1a/out" "-L" "/opt/crater/target/debug/build/miniz-sys-5ae27cb3fc5ef2d5/out" "-L" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libenv_logger-496125452bd0d87b.rlib" "/opt/crater/target/debug/deps/libatty-eb5da56e70a939cc.rlib" "/opt/crater/target/debug/deps/libhumantime-f3229d51b2810709.rlib" "/opt/crater/target/debug/deps/libtermcolor-63bd51856c425668.rlib" "/opt/crater/target/debug/deps/libactix_server-fea95d4356ccfacb.rlib" "/opt/crater/target/debug/deps/libtokio_signal-9bd2609d51627a00.rlib" "/opt/crater/target/debug/deps/libsignal_hook-8ccce9ebd8386df6.rlib" "/opt/crater/target/debug/deps/libsignal_hook_registry-a10a69e99957c04c.rlib" "/opt/crater/target/debug/deps/libarc_swap-4c331ef759e4d015.rlib" "/opt/crater/target/debug/deps/libmio_uds-f6319a558176422a.rlib" "/opt/crater/target/debug/deps/libactix_rt-1c2cb99315b8ed53.rlib" "/opt/crater/target/debug/deps/libactix_http-384096f387669fbd.rlib" "/opt/crater/target/debug/deps/libsha1-39b1a0de906cd753.rlib" "/opt/crater/target/debug/deps/libbase64-b248d06447d2c6c2.rlib" "/opt/crater/target/debug/deps/librand-649ad4be86f3940f.rlib" "/opt/crater/target/debug/deps/librand_chacha-0460b9813a543354.rlib" "/opt/crater/target/debug/deps/libc2_chacha-482fc8ce59b9bcb9.rlib" "/opt/crater/target/debug/deps/libppv_lite86-689a570bc058b143.rlib" "/opt/crater/target/debug/deps/librand_core-f11b7cbcf193156d.rlib" "/opt/crater/target/debug/deps/libgetrandom-ee0bcb0c0b4efe0d.rlib" "/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib" "/opt/crater/target/debug/deps/libdtoa-8ca04c299b5dbe41.rlib" "/opt/crater/target/debug/deps/libhttparse-edd6757da9f4355f.rlib" "/opt/crater/target/debug/deps/libchrono-2af01fbc0a73eccc.rlib" "/opt/crater/target/debug/deps/libnum_integer-283a7abc0f1061b4.rlib" "/opt/crater/target/debug/deps/libnum_traits-834021e24a52ff2b.rlib" "/opt/crater/target/debug/deps/libserde_json-f6b540ffea90773e.rlib" "/opt/crater/target/debug/deps/libryu-be578719e5bf2327.rlib" "/opt/crater/target/debug/deps/libserde-3a1343e806eb8450.rlib" "/opt/crater/target/debug/deps/libcopyless-6777c7156645abda.rlib" "/opt/crater/target/debug/deps/libencoding_rs-9520a36bfdc8bdfc.rlib" "/opt/crater/target/debug/deps/libregex-3f288169bf5fc935.rlib" "/opt/crater/target/debug/deps/libregex_syntax-74b9e606898eafee.rlib" "/opt/crater/target/debug/deps/libthread_local-1801494cfc15e4c0.rlib" "/opt/crater/target/debug/deps/libaho_corasick-05f4d1fa22c64ffe.rlib" "/opt/crater/target/debug/deps/libmemchr-5970d48417368191.rlib" "/opt/crater/target/debug/deps/liblanguage_tags-31855a1d4a2b270f.rlib" "/opt/crater/target/debug/deps/libmime-2ad0b7e042b7ff0c.rlib" "/opt/crater/target/debug/deps/libunicase-9d7982dbb3c6947a.rlib" "/opt/crater/target/debug/deps/libactix_threadpool-bc4bd01f232f2b25.rlib" "/opt/crater/target/debug/deps/libthreadpool-4d589970c849f5a0.rlib" "/opt/crater/target/debug/deps/libparking_lot-10bb98feb38d456e.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-2d59d8d5d5bcab48.rlib" "/opt/crater/target/debug/deps/liblock_api-c0011194a4ef456e.rlib" "/opt/crater/target/debug/deps/libscopeguard-9b5b548023a82ae4.rlib" "/opt/crater/target/debug/deps/libtime-29b9853d922d9d06.rlib" "/opt/crater/target/debug/deps/libhashbrown-3e7e9e24cb7aca02.rlib" "/opt/crater/target/debug/deps/libactix_utils-8833800e0814ebd9.rlib" "/opt/crater/target/debug/deps/libactix_connect-cfb4f7c50f0f175f.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-9f8eef7684cef0ea.rlib" "/opt/crater/target/debug/deps/libtrust_dns_resolver-e1aed52ac7f456bc.rlib" "/opt/crater/target/debug/deps/libtrust_dns_proto-e6304e28299b35bd.rlib" "/opt/crater/target/debug/deps/liburl-ebaefb0ef9c8c191.rlib" "/opt/crater/target/debug/deps/libpercent_encoding-7ae675a5263db170.rlib" "/opt/crater/target/debug/deps/libtokio_udp-9fdc8a48dfc85b82.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c93f6415d850a3a5.rlib" "/opt/crater/target/debug/deps/libsocket2-b70aeebd5fe6b020.rlib" "/opt/crater/target/debug/deps/libidna-52fbc9ef9e77809d.rlib" "/opt/crater/target/debug/deps/libunicode_normalization-3ac46972447058ab.rlib" "/opt/crater/target/debug/deps/libunicode_bidi-ad8beb3a11009df0.rlib" "/opt/crater/target/debug/deps/libmatches-5962f64d87545c04.rlib" "/opt/crater/target/debug/deps/libresolv_conf-db2625ffe0bb78a3.rlib" "/opt/crater/target/debug/deps/libhostname-35543ca7cf7bd409.rlib" "/opt/crater/target/debug/deps/libquick_error-a2165722eb49e44c.rlib" "/opt/crater/target/debug/deps/liblru_cache-36b5e01acff7ba94.rlib" "/opt/crater/target/debug/deps/liblinked_hash_map-3e4fdc964a0eef39.rlib" "/opt/crater/target/debug/deps/libfailure-d111ede8b4b28ffa.rlib" "/opt/crater/target/debug/deps/libbacktrace-b55b2db5d65cb8a4.rlib" "/opt/crater/target/debug/deps/libbacktrace_sys-01c69401428504e5.rlib" "/opt/crater/target/debug/deps/librustc_demangle-dd44235a42da0b4e.rlib" "/opt/crater/target/debug/deps/libeither-718ea347c7788d34.rlib" "/opt/crater/target/debug/deps/libh2-275cdd906ec5ecea.rlib" "/opt/crater/target/debug/deps/libindexmap-b695f4379dbb1f0f.rlib" "/opt/crater/target/debug/deps/libstring-8ad5ccb084f8293f.rlib" "/opt/crater/target/debug/deps/libhttp-cf48fd6c10a2edad.rlib" "/opt/crater/target/debug/deps/libitoa-d35f0a89557c3310.rlib" "/opt/crater/target/debug/deps/libactix_service-0a7adc2b0243323b.rlib" "/opt/crater/target/debug/deps/libactix_server_config-fb728bcd30fd0f48.rlib" "/opt/crater/target/debug/deps/libtokio_openssl-2253461ad1f37cb2.rlib" "/opt/crater/target/debug/deps/libopenssl-11c37783e98fe9ec.rlib" "/opt/crater/target/debug/deps/libopenssl_sys-69f752e5ebbdfef0.rlib" "/opt/crater/target/debug/deps/libforeign_types-2a1e48607c06fed3.rlib" "/opt/crater/target/debug/deps/libforeign_types_shared-ba70a268c095ba50.rlib" "/opt/crater/target/debug/deps/libbitflags-bcd34e8f74846360.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-abea3e3b1e9489e6.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-b71211fa47e02d37.rlib" "/opt/crater/target/debug/deps/libtokio_sync-be5eabd68f6f693c.rlib" "/opt/crater/target/debug/deps/libfnv-0b54693efaf27e2a.rlib" "/opt/crater/target/debug/deps/libtokio_executor-45f8f98c41472383.rlib" "/opt/crater/target/debug/deps/libparking_lot-e180e0ce0226a4b0.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-72821d80cb7b7770.rlib" "/opt/crater/target/debug/deps/libsmallvec-8ab4c1b4228c68ef.rlib" "/opt/crater/target/debug/deps/librand-4d2dd95f3d7aec75.rlib" "/opt/crater/target/debug/deps/librand_xorshift-4203f3157eb9a8e3.rlib" "/opt/crater/target/debug/deps/librand_pcg-8d4de0bb8369ce1b.rlib" "/opt/crater/target/debug/deps/librand_hc-bbd146a4b8bf6f4b.rlib" "/opt/crater/target/debug/deps/librand_chacha-e30594121fba25f8.rlib" "/opt/crater/target/debug/deps/librand_isaac-116c1a9914320278.rlib" "/opt/crater/target/debug/deps/librand_core-5fd440ec9008cce1.rlib" "/opt/crater/target/debug/deps/librand_os-df63c8a890c1e2e9.rlib" "/opt/crater/target/debug/deps/librand_jitter-06f1043e9c10514f.rlib" "/opt/crater/target/debug/deps/librand_core-fe4fc41bf9015dbc.rlib" "/opt/crater/target/debug/deps/liblock_api-494f6f1561bbf82e.rlib" "/opt/crater/target/debug/deps/libowning_ref-effe362413e7ab7d.rlib" "/opt/crater/target/debug/deps/libstable_deref_trait-d0a4946e4c2703bb.rlib" "/opt/crater/target/debug/deps/libscopeguard-316f896e0d3e978a.rlib" "/opt/crater/target/debug/deps/libnum_cpus-509d1090a02489e2.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-c7636b44f63f0536.rlib" "/opt/crater/target/debug/deps/liblazy_static-eb33edc716f69401.rlib" "/opt/crater/target/debug/deps/libmio-0e2bc1a0dc1217dc.rlib" "/opt/crater/target/debug/deps/libslab-38e1dff674bc2c67.rlib" "/opt/crater/target/debug/deps/libnet2-629edbfe8fd82654.rlib" "/opt/crater/target/debug/deps/libactix_codec-a51ef8db5bdb2c8a.rlib" "/opt/crater/target/debug/deps/libtokio_codec-e1291b902f796713.rlib" "/opt/crater/target/debug/deps/libtokio_io-12d50d265e1b1342.rlib" "/opt/crater/target/debug/deps/libfutures-2204f6374ace2c39.rlib" "/opt/crater/target/debug/deps/libbytes-5606c44df78b5c7a.rlib" "/opt/crater/target/debug/deps/libiovec-0aff63894148ec6b.rlib" "/opt/crater/target/debug/deps/liblibc-d019039477cac03b.rlib" "/opt/crater/target/debug/deps/libbyteorder-585fd2581aa01382.rlib" "/opt/crater/target/debug/deps/liblog-55cfa8f7ed258bff.rlib" "/opt/crater/target/debug/deps/libcfg_if-3028bdd7b8e15bb5.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-4a76ff35a356aedf.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e11c7b3b3225afe2.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-13217ede3d276f16.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-621a9ee22da6caa1.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-546c844e8071bbeb.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-be9569e4d599746f.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-47d8845cef2a3bc5.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-017511bce73a530c.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-be7979c57a08057b.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-d6459c4f0817c67c.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-580035dd98451925.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-aee5c24fff305dea.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-8a55a4098920125a.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-9fc4b5be2ba5cc19.rlib" "-Wl,-Bdynamic" "-lssl" "-lcrypto" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: reopening /opt/crater/target/debug/examples/echo-6c064328198574d3.4sle8uwm9uervaxu.rcgu.o: Cannot allocate memory [INFO] [stderr] [INFO] [stderr] /usr/bin/ld: can not read symbols: Cannot allocate memory [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `actix-http`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.0.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.1.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.10.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.11.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.12.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.13.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.14.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.15.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.2.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.3.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.4.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.5.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.6.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.7.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.8.rcgu.o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.test_client.8vj0i525-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3" "/opt/crater/target/debug/deps/test_client-be45af9a4b287cc3.4ryqo4we2bwmrftv.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/target/debug/build/backtrace-sys-5c81d3694d492bc0/out" "-L" "/opt/crater/target/debug/build/brotli-sys-d6e70083c16f6e1a/out" "-L" "/opt/crater/target/debug/build/miniz-sys-5ae27cb3fc5ef2d5/out" "-L" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libenv_logger-496125452bd0d87b.rlib" "/opt/crater/target/debug/deps/libatty-eb5da56e70a939cc.rlib" "/opt/crater/target/debug/deps/libhumantime-f3229d51b2810709.rlib" "/opt/crater/target/debug/deps/libtermcolor-63bd51856c425668.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-0127509d2e54a846.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libterm-2651f8b4eed9e86e.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-c729851ce6e3efb2.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-e8235f0d435d4737.rlib" "/opt/crater/target/debug/deps/libactix_http_test-ea2075b4cced2a0a.rlib" "/opt/crater/target/debug/deps/libawc-b13de5bc08c38ff9.rlib" "/opt/crater/target/debug/deps/libactix_http-46277807d2ae5fcf.rlib" "/opt/crater/target/debug/deps/libserde_urlencoded-8d7d262c86d886f5.rlib" "/opt/crater/target/debug/deps/liburl-9236dce3cebe2d6b.rlib" "/opt/crater/target/debug/deps/libidna-e4206e23dc43a3a1.rlib" "/opt/crater/target/debug/deps/libpercent_encoding-73b86d0e66debdaa.rlib" "/opt/crater/target/debug/deps/libflate2-de413d2d4effde63.rlib" "/opt/crater/target/debug/deps/libminiz_sys-af58369b556d0052.rlib" "/opt/crater/target/debug/deps/libcrc32fast-6889bae451d673e1.rlib" "/opt/crater/target/debug/deps/libbrotli2-0b8216acbc5db44f.rlib" "/opt/crater/target/debug/deps/libbrotli_sys-75004c581fcb7645.rlib" "/opt/crater/target/debug/deps/libactix_server-fea95d4356ccfacb.rlib" "/opt/crater/target/debug/deps/libtokio_signal-9bd2609d51627a00.rlib" "/opt/crater/target/debug/deps/libsignal_hook-8ccce9ebd8386df6.rlib" "/opt/crater/target/debug/deps/libsignal_hook_registry-a10a69e99957c04c.rlib" "/opt/crater/target/debug/deps/libarc_swap-4c331ef759e4d015.rlib" "/opt/crater/target/debug/deps/libmio_uds-f6319a558176422a.rlib" "/opt/crater/target/debug/deps/libactix_rt-1c2cb99315b8ed53.rlib" "/opt/crater/target/debug/deps/libactix_http-384096f387669fbd.rlib" "/opt/crater/target/debug/deps/libsha1-39b1a0de906cd753.rlib" "/opt/crater/target/debug/deps/libbase64-b248d06447d2c6c2.rlib" "/opt/crater/target/debug/deps/librand-649ad4be86f3940f.rlib" "/opt/crater/target/debug/deps/librand_chacha-0460b9813a543354.rlib" "/opt/crater/target/debug/deps/libc2_chacha-482fc8ce59b9bcb9.rlib" "/opt/crater/target/debug/deps/libppv_lite86-689a570bc058b143.rlib" "/opt/crater/target/debug/deps/librand_core-f11b7cbcf193156d.rlib" "/opt/crater/target/debug/deps/libgetrandom-ee0bcb0c0b4efe0d.rlib" "/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib" "/opt/crater/target/debug/deps/libdtoa-8ca04c299b5dbe41.rlib" "/opt/crater/target/debug/deps/libhttparse-edd6757da9f4355f.rlib" "/opt/crater/target/debug/deps/libchrono-2af01fbc0a73eccc.rlib" "/opt/crater/target/debug/deps/libnum_integer-283a7abc0f1061b4.rlib" "/opt/crater/target/debug/deps/libnum_traits-834021e24a52ff2b.rlib" "/opt/crater/target/debug/deps/libserde_json-f6b540ffea90773e.rlib" "/opt/crater/target/debug/deps/libryu-be578719e5bf2327.rlib" "/opt/crater/target/debug/deps/libserde-3a1343e806eb8450.rlib" "/opt/crater/target/debug/deps/libcopyless-6777c7156645abda.rlib" "/opt/crater/target/debug/deps/libencoding_rs-9520a36bfdc8bdfc.rlib" "/opt/crater/target/debug/deps/libregex-3f288169bf5fc935.rlib" "/opt/crater/target/debug/deps/libregex_syntax-74b9e606898eafee.rlib" "/opt/crater/target/debug/deps/libthread_local-1801494cfc15e4c0.rlib" "/opt/crater/target/debug/deps/libaho_corasick-05f4d1fa22c64ffe.rlib" "/opt/crater/target/debug/deps/libmemchr-5970d48417368191.rlib" "/opt/crater/target/debug/deps/liblanguage_tags-31855a1d4a2b270f.rlib" "/opt/crater/target/debug/deps/libmime-2ad0b7e042b7ff0c.rlib" "/opt/crater/target/debug/deps/libunicase-9d7982dbb3c6947a.rlib" "/opt/crater/target/debug/deps/libactix_threadpool-bc4bd01f232f2b25.rlib" "/opt/crater/target/debug/deps/libthreadpool-4d589970c849f5a0.rlib" "/opt/crater/target/debug/deps/libparking_lot-10bb98feb38d456e.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-2d59d8d5d5bcab48.rlib" "/opt/crater/target/debug/deps/liblock_api-c0011194a4ef456e.rlib" "/opt/crater/target/debug/deps/libscopeguard-9b5b548023a82ae4.rlib" "/opt/crater/target/debug/deps/libtime-29b9853d922d9d06.rlib" "/opt/crater/target/debug/deps/libhashbrown-3e7e9e24cb7aca02.rlib" "/opt/crater/target/debug/deps/libactix_utils-8833800e0814ebd9.rlib" "/opt/crater/target/debug/deps/libactix_connect-cfb4f7c50f0f175f.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-9f8eef7684cef0ea.rlib" "/opt/crater/target/debug/deps/libtrust_dns_resolver-e1aed52ac7f456bc.rlib" "/opt/crater/target/debug/deps/libtrust_dns_proto-e6304e28299b35bd.rlib" "/opt/crater/target/debug/deps/liburl-ebaefb0ef9c8c191.rlib" "/opt/crater/target/debug/deps/libpercent_encoding-7ae675a5263db170.rlib" "/opt/crater/target/debug/deps/libtokio_udp-9fdc8a48dfc85b82.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c93f6415d850a3a5.rlib" "/opt/crater/target/debug/deps/libsocket2-b70aeebd5fe6b020.rlib" "/opt/crater/target/debug/deps/libidna-52fbc9ef9e77809d.rlib" "/opt/crater/target/debug/deps/libunicode_normalization-3ac46972447058ab.rlib" "/opt/crater/target/debug/deps/libunicode_bidi-ad8beb3a11009df0.rlib" "/opt/crater/target/debug/deps/libmatches-5962f64d87545c04.rlib" "/opt/crater/target/debug/deps/libresolv_conf-db2625ffe0bb78a3.rlib" "/opt/crater/target/debug/deps/libhostname-35543ca7cf7bd409.rlib" "/opt/crater/target/debug/deps/libquick_error-a2165722eb49e44c.rlib" "/opt/crater/target/debug/deps/liblru_cache-36b5e01acff7ba94.rlib" "/opt/crater/target/debug/deps/liblinked_hash_map-3e4fdc964a0eef39.rlib" "/opt/crater/target/debug/deps/libfailure-d111ede8b4b28ffa.rlib" "/opt/crater/target/debug/deps/libbacktrace-b55b2db5d65cb8a4.rlib" "/opt/crater/target/debug/deps/libbacktrace_sys-01c69401428504e5.rlib" "/opt/crater/target/debug/deps/librustc_demangle-dd44235a42da0b4e.rlib" "/opt/crater/target/debug/deps/libeither-718ea347c7788d34.rlib" "/opt/crater/target/debug/deps/libh2-275cdd906ec5ecea.rlib" "/opt/crater/target/debug/deps/libindexmap-b695f4379dbb1f0f.rlib" "/opt/crater/target/debug/deps/libstring-8ad5ccb084f8293f.rlib" "/opt/crater/target/debug/deps/libhttp-cf48fd6c10a2edad.rlib" "/opt/crater/target/debug/deps/libitoa-d35f0a89557c3310.rlib" "/opt/crater/target/debug/deps/libactix_server_config-fb728bcd30fd0f48.rlib" "/opt/crater/target/debug/deps/libtokio_openssl-2253461ad1f37cb2.rlib" "/opt/crater/target/debug/deps/libopenssl-11c37783e98fe9ec.rlib" "/opt/crater/target/debug/deps/libopenssl_sys-69f752e5ebbdfef0.rlib" "/opt/crater/target/debug/deps/libforeign_types-2a1e48607c06fed3.rlib" "/opt/crater/target/debug/deps/libforeign_types_shared-ba70a268c095ba50.rlib" "/opt/crater/target/debug/deps/libbitflags-bcd34e8f74846360.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-abea3e3b1e9489e6.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-b71211fa47e02d37.rlib" "/opt/crater/target/debug/deps/libtokio_sync-be5eabd68f6f693c.rlib" "/opt/crater/target/debug/deps/libfnv-0b54693efaf27e2a.rlib" "/opt/crater/target/debug/deps/libtokio_executor-45f8f98c41472383.rlib" "/opt/crater/target/debug/deps/libparking_lot-e180e0ce0226a4b0.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-72821d80cb7b7770.rlib" "/opt/crater/target/debug/deps/libsmallvec-8ab4c1b4228c68ef.rlib" "/opt/crater/target/debug/deps/librand-4d2dd95f3d7aec75.rlib" "/opt/crater/target/debug/deps/librand_xorshift-4203f3157eb9a8e3.rlib" "/opt/crater/target/debug/deps/librand_pcg-8d4de0bb8369ce1b.rlib" "/opt/crater/target/debug/deps/librand_hc-bbd146a4b8bf6f4b.rlib" "/opt/crater/target/debug/deps/librand_chacha-e30594121fba25f8.rlib" "/opt/crater/target/debug/deps/librand_isaac-116c1a9914320278.rlib" "/opt/crater/target/debug/deps/librand_core-5fd440ec9008cce1.rlib" "/opt/crater/target/debug/deps/librand_os-df63c8a890c1e2e9.rlib" "/opt/crater/target/debug/deps/librand_jitter-06f1043e9c10514f.rlib" "/opt/crater/target/debug/deps/librand_core-fe4fc41bf9015dbc.rlib" "/opt/crater/target/debug/deps/liblock_api-494f6f1561bbf82e.rlib" "/opt/crater/target/debug/deps/libowning_ref-effe362413e7ab7d.rlib" "/opt/crater/target/debug/deps/libstable_deref_trait-d0a4946e4c2703bb.rlib" "/opt/crater/target/debug/deps/libscopeguard-316f896e0d3e978a.rlib" "/opt/crater/target/debug/deps/libnum_cpus-509d1090a02489e2.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-c7636b44f63f0536.rlib" "/opt/crater/target/debug/deps/liblazy_static-eb33edc716f69401.rlib" "/opt/crater/target/debug/deps/libmio-0e2bc1a0dc1217dc.rlib" "/opt/crater/target/debug/deps/libslab-38e1dff674bc2c67.rlib" "/opt/crater/target/debug/deps/libnet2-629edbfe8fd82654.rlib" "/opt/crater/target/debug/deps/libactix_codec-a51ef8db5bdb2c8a.rlib" "/opt/crater/target/debug/deps/libtokio_codec-e1291b902f796713.rlib" "/opt/crater/target/debug/deps/libtokio_io-12d50d265e1b1342.rlib" "/opt/crater/target/debug/deps/liblog-55cfa8f7ed258bff.rlib" "/opt/crater/target/debug/deps/libcfg_if-3028bdd7b8e15bb5.rlib" "/opt/crater/target/debug/deps/libbytes-5606c44df78b5c7a.rlib" "/opt/crater/target/debug/deps/libiovec-0aff63894148ec6b.rlib" "/opt/crater/target/debug/deps/liblibc-d019039477cac03b.rlib" "/opt/crater/target/debug/deps/libbyteorder-585fd2581aa01382.rlib" "/opt/crater/target/debug/deps/libactix_service-0a7adc2b0243323b.rlib" "/opt/crater/target/debug/deps/libfutures-2204f6374ace2c39.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-4a76ff35a356aedf.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e11c7b3b3225afe2.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-13217ede3d276f16.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-621a9ee22da6caa1.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-546c844e8071bbeb.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-be9569e4d599746f.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-47d8845cef2a3bc5.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-017511bce73a530c.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-be7979c57a08057b.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-d6459c4f0817c67c.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-580035dd98451925.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-aee5c24fff305dea.rlib" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-8a55a4098920125a.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-9fc4b5be2ba5cc19.rlib" "-Wl,-Bdynamic" "-lssl" "-lcrypto" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: BFD (GNU Binutils for Debian) 2.28 internal error, aborting at ../../bfd/elf64-x86-64.c:4731 in elf_x86_64_relocate_section [INFO] [stderr] [INFO] [stderr] /usr/bin/ld: Please report this bug. [INFO] [stderr] [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `actix-http`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "c981c245c9f1de77e0d60d35a7f1e9a19d31fd19565f8a5977d17fd82516a9a9"` [INFO] running `"docker" "rm" "-f" "c981c245c9f1de77e0d60d35a7f1e9a19d31fd19565f8a5977d17fd82516a9a9"` [INFO] [stdout] c981c245c9f1de77e0d60d35a7f1e9a19d31fd19565f8a5977d17fd82516a9a9