[INFO] crate tower-web 0.3.7 is already in cache [INFO] extracting crate tower-web 0.3.7 into work/ex/beta-1.38-1/sources/1.37.0/reg/tower-web/0.3.7 [INFO] extracting crate tower-web 0.3.7 into work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/tower-web/0.3.7 [INFO] validating manifest of tower-web-0.3.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 tower-web-0.3.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 tower-web-0.3.7 [INFO] finished frobbing tower-web-0.3.7 [INFO] frobbed toml for tower-web-0.3.7 written to work/ex/beta-1.38-1/sources/1.37.0/reg/tower-web/0.3.7/Cargo.toml [INFO] started frobbing tower-web-0.3.7 [INFO] finished frobbing tower-web-0.3.7 [INFO] frobbed toml for tower-web-0.3.7 written to work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/tower-web/0.3.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 tower-web-0.3.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-6/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/reg/tower-web/0.3.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] 013efa2a8a90c06311b4fe4c4853e0fb60f1d603b8400494affe0d388acf280e [INFO] running `"docker" "start" "-a" "013efa2a8a90c06311b4fe4c4853e0fb60f1d603b8400494affe0d388acf280e"` [INFO] [stderr] Compiling serde_plain v0.3.0 [INFO] [stderr] Compiling pest_derive v1.0.8 [INFO] [stderr] Compiling atoi v0.2.3 [INFO] [stderr] Compiling checked v0.5.0 [INFO] [stderr] Compiling phf_generator v0.7.24 [INFO] [stderr] Compiling headers-derive v0.1.1 [INFO] [stderr] Compiling headers-core v0.1.1 [INFO] [stderr] Compiling tower-web-macros v0.3.5 [INFO] [stderr] Compiling tokio-reactor v0.1.9 [INFO] [stderr] Compiling tokio-fs v0.1.6 [INFO] [stderr] Compiling phf_codegen v0.7.24 [INFO] [stderr] Compiling mime_guess v1.8.7 [INFO] [stderr] Compiling headers v0.2.1 [INFO] [stderr] Compiling tokio-tcp v0.1.3 [INFO] [stderr] Compiling tokio-uds v0.2.5 [INFO] [stderr] Compiling tokio-udp v0.1.3 [INFO] [stderr] Compiling tokio v0.1.19 [INFO] [stderr] Compiling handlebars v1.0.5 [INFO] [stderr] Compiling hyper v0.12.33 [INFO] [stderr] Compiling tower-web v0.3.7 (/opt/crater/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/config/mod.rs:12:35 [INFO] [stderr] | [INFO] [stderr] 12 | type AnyMap = HashMap, BuildHasherDefault>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Any + Send + Sync` [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/config/mod.rs:74:31 [INFO] [stderr] | [INFO] [stderr] 74 | (&**boxed as &Any).downcast_ref() [INFO] [stderr] | ^^^ help: use `dyn`: `dyn Any` [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/middleware/log/service.rs:101:24 [INFO] [stderr] | [INFO] [stderr] 101 | 400...599 => Level::Error, [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] = note: #[warn(ellipsis_inclusive_range_patterns)] on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/run.rs:78:23 [INFO] [stderr] | [INFO] [stderr] 78 | type Future = Box, Error = Self::Error> + Send>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future, Error = Self::Error> + Send` [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/middleware/cors/config.rs:110:21 [INFO] [stderr] | [INFO] [stderr] 110 | let mut headers = self.basic_headers(); [INFO] [stderr] | ----^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_mut)] on by default [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1m 09s [INFO] running `"docker" "inspect" "013efa2a8a90c06311b4fe4c4853e0fb60f1d603b8400494affe0d388acf280e"` [INFO] running `"docker" "rm" "-f" "013efa2a8a90c06311b4fe4c4853e0fb60f1d603b8400494affe0d388acf280e"` [INFO] [stdout] 013efa2a8a90c06311b4fe4c4853e0fb60f1d603b8400494affe0d388acf280e [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-6/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/reg/tower-web/0.3.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] d8c609a3cf21d436201cd672b3b903e7eedd9e148778d02039a6d0cfc937f2c4 [INFO] running `"docker" "start" "-a" "d8c609a3cf21d436201cd672b3b903e7eedd9e148778d02039a6d0cfc937f2c4"` [INFO] [stderr] Compiling tower-web v0.3.7 (/opt/crater/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/config/mod.rs:12:35 [INFO] [stderr] | [INFO] [stderr] 12 | type AnyMap = HashMap, BuildHasherDefault>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Any + Send + Sync` [INFO] [stderr] | [INFO] [stderr] note: lint level defined here [INFO] [stderr] --> src/lib.rs:3:24 [INFO] [stderr] | [INFO] [stderr] 3 | #![cfg_attr(test, deny(warnings))] [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] = note: #[warn(bare_trait_objects)] implied by #[warn(warnings)] [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/config/mod.rs:74:31 [INFO] [stderr] | [INFO] [stderr] 74 | (&**boxed as &Any).downcast_ref() [INFO] [stderr] | ^^^ help: use `dyn`: `dyn Any` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/middleware/cors/config.rs:229:26 [INFO] [stderr] | [INFO] [stderr] 229 | type TestError = Box<::std::error::Error>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn (::std::error::Error)` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/middleware/cors/service.rs:118:26 [INFO] [stderr] | [INFO] [stderr] 118 | type TestError = Box<::std::error::Error>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn (::std::error::Error)` [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/middleware/log/service.rs:101:24 [INFO] [stderr] | [INFO] [stderr] 101 | 400...599 => Level::Error, [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] note: lint level defined here [INFO] [stderr] --> src/lib.rs:3:24 [INFO] [stderr] | [INFO] [stderr] 3 | #![cfg_attr(test, deny(warnings))] [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] = note: #[warn(ellipsis_inclusive_range_patterns)] implied by #[warn(warnings)] [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/run.rs:78:23 [INFO] [stderr] | [INFO] [stderr] 78 | type Future = Box, Error = Self::Error> + Send>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future, Error = Self::Error> + Send` [INFO] [stderr] [INFO] [stderr] warning: the item `Future` is imported redundantly [INFO] [stderr] --> tests/support/mod.rs:113:9 [INFO] [stderr] | [INFO] [stderr] 12 | pub use self::futures::Future; [INFO] [stderr] | --------------------- the item `Future` is already imported here [INFO] [stderr] ... [INFO] [stderr] 113 | use self::futures::Future; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: the item `Future` is imported redundantly [INFO] [stderr] --> tests/support/mod.rs:128:9 [INFO] [stderr] | [INFO] [stderr] 12 | pub use self::futures::Future; [INFO] [stderr] | --------------------- the item `Future` is already imported here [INFO] [stderr] ... [INFO] [stderr] 128 | use self::futures::Future; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: the item `Future` is imported redundantly [INFO] [stderr] --> tests/support/mod.rs:113:9 [INFO] [stderr] | [INFO] [stderr] 12 | pub use self::futures::Future; [INFO] [stderr] | --------------------- the item `Future` is already imported here [INFO] [stderr] ... [INFO] [stderr] 113 | use self::futures::Future; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: the item `Future` is imported redundantly [INFO] [stderr] --> tests/support/mod.rs:128:9 [INFO] [stderr] | [INFO] [stderr] 12 | pub use self::futures::Future; [INFO] [stderr] | --------------------- the item `Future` is already imported here [INFO] [stderr] ... [INFO] [stderr] 128 | use self::futures::Future; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: Could not compile `tower-web`. [INFO] [stderr] [INFO] [stderr] Caused by: [INFO] [stderr] process didn't exit successfully: `rustc --crate-name html_handlebars examples/html_handlebars.rs --color never --crate-type bin --emit=dep-info,link -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="handlebars"' -C metadata=680c54f2ea02ecc9 -C extra-filename=-680c54f2ea02ecc9 --out-dir /opt/crater/target/debug/examples -L dependency=/opt/crater/target/debug/deps --extern atoi=/opt/crater/target/debug/deps/libatoi-fea4f50b99dfa35e.rlib --extern bytes=/opt/crater/target/debug/deps/libbytes-6eca479c9983e64d.rlib --extern checked=/opt/crater/target/debug/deps/libchecked-9036e83be392b549.rlib --extern chrono=/opt/crater/target/debug/deps/libchrono-2076eac5ab4c7ca0.rlib --extern env_logger=/opt/crater/target/debug/deps/libenv_logger-bca1979cfbcacec6.rlib --extern flate2=/opt/crater/target/debug/deps/libflate2-41df7e666bb79755.rlib --extern futures=/opt/crater/target/debug/deps/libfutures-2204f6374ace2c39.rlib --extern handlebars=/opt/crater/target/debug/deps/libhandlebars-67eccd9f2843ea54.rlib --extern headers=/opt/crater/target/debug/deps/libheaders-9363a0ebdbe5b76b.rlib --extern http=/opt/crater/target/debug/deps/libhttp-88ee4a9dc93d3818.rlib --extern hyper=/opt/crater/target/debug/deps/libhyper-06795c16fb04c038.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 mime_guess=/opt/crater/target/debug/deps/libmime_guess-d1ca6e689a1cb5de.rlib --extern percent_encoding=/opt/crater/target/debug/deps/libpercent_encoding-7ae675a5263db170.rlib --extern proc_macro_hack=/opt/crater/target/debug/deps/libproc_macro_hack-8cfdb398f731d0d0.rlib --extern rand=/opt/crater/target/debug/deps/librand-7be3a21921134c52.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_plain=/opt/crater/target/debug/deps/libserde_plain-00df4db75d912098.rlib --extern serde_urlencoded=/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib --extern tokio=/opt/crater/target/debug/deps/libtokio-cdadcef89a2c6c64.rlib --extern tokio_fs=/opt/crater/target/debug/deps/libtokio_fs-5634bae14b0a41a5.rlib --extern tokio_io=/opt/crater/target/debug/deps/libtokio_io-c0ed09c53cebd468.rlib --extern tower_service=/opt/crater/target/debug/deps/libtower_service-55206a573a5d47f1.rlib --extern tower_web=/opt/crater/target/debug/deps/libtower_web-d4c066935ace9a56.rlib --extern tower_web_macros=/opt/crater/target/debug/deps/libtower_web_macros-325102e04956e751.so --extern void=/opt/crater/target/debug/deps/libvoid-03072202629d0c80.rlib --cap-lints=warn -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/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.0.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.1.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.10.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.11.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.12.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.13.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.14.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.15.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.2.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.3.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.4.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.5.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.6.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.7.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.8.rcgu.o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.params.2buenfdm-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09" "/opt/crater/target/debug/deps/params-1495d44c3ef77e09.s8q4bxl6jamvqdo.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-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/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/libtower_web-d4c066935ace9a56.rlib" "/opt/crater/target/debug/deps/libproc_macro_hack-8cfdb398f731d0d0.rlib" "/opt/crater/target/debug/deps/libhandlebars-67eccd9f2843ea54.rlib" "/opt/crater/target/debug/deps/libwalkdir-9732b146893c009a.rlib" "/opt/crater/target/debug/deps/libsame_file-20f5d349f4fddef0.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/libquick_error-a2165722eb49e44c.rlib" "/opt/crater/target/debug/deps/libpest-4aa570d3757c88ab.rlib" "/opt/crater/target/debug/deps/libvoid-03072202629d0c80.rlib" "/opt/crater/target/debug/deps/libtower_service-55206a573a5d47f1.rlib" "/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib" "/opt/crater/target/debug/deps/liburl-ebaefb0ef9c8c191.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/libdtoa-8ca04c299b5dbe41.rlib" "/opt/crater/target/debug/deps/libserde_plain-00df4db75d912098.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/libpercent_encoding-7ae675a5263db170.rlib" "/opt/crater/target/debug/deps/libmime_guess-d1ca6e689a1cb5de.rlib" "/opt/crater/target/debug/deps/libphf-9a254bd9e26eecdf.rlib" "/opt/crater/target/debug/deps/libphf_shared-b8476647b4aaa516.rlib" "/opt/crater/target/debug/deps/libunicase-b11bfdbf115a8339.rlib" "/opt/crater/target/debug/deps/libsiphasher-d8c9cc1cc66f074e.rlib" "/opt/crater/target/debug/deps/libmime-2eb3550a6108d090.rlib" "/opt/crater/target/debug/deps/liblog-5ad476e9af8f39be.rlib" "/opt/crater/target/debug/deps/libhyper-06795c16fb04c038.rlib" "/opt/crater/target/debug/deps/libwant-85d6e374eaaf3dc8.rlib" "/opt/crater/target/debug/deps/libtry_lock-5d6601f1f27a9bbb.rlib" "/opt/crater/target/debug/deps/libtokio-cdadcef89a2c6c64.rlib" "/opt/crater/target/debug/deps/libtokio_trace_core-6ad90247803017ff.rlib" "/opt/crater/target/debug/deps/libtokio_uds-df5b867fc57b750a.rlib" "/opt/crater/target/debug/deps/libmio_uds-f6319a558176422a.rlib" "/opt/crater/target/debug/deps/libtokio_udp-278253ae028f65ce.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c93f6415d850a3a5.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-e1ed115d3d9a46e1.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-816504c2da44c7c7.rlib" "/opt/crater/target/debug/deps/libtokio_sync-be5eabd68f6f693c.rlib" "/opt/crater/target/debug/deps/libparking_lot-b0edbae249953a77.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-07c1c93dbdd48fd5.rlib" "/opt/crater/target/debug/deps/libsmallvec-8ab4c1b4228c68ef.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/libtokio_fs-5634bae14b0a41a5.rlib" "/opt/crater/target/debug/deps/libtokio_threadpool-ae2d6527c4c0c909.rlib" "/opt/crater/target/debug/deps/librand-65b8c47b411eebc9.rlib" "/opt/crater/target/debug/deps/librand_xorshift-ff7441af0a9fb520.rlib" "/opt/crater/target/debug/deps/librand_pcg-8d4de0bb8369ce1b.rlib" "/opt/crater/target/debug/deps/librand_hc-04d208c1d9952d78.rlib" "/opt/crater/target/debug/deps/librand_chacha-7a7143ada6e2f196.rlib" "/opt/crater/target/debug/deps/librand_isaac-3a9329c693cd3f14.rlib" "/opt/crater/target/debug/deps/librand_core-16454af531e76575.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/libcrossbeam_queue-f6668dbd335cb278.rlib" "/opt/crater/target/debug/deps/libcrossbeam_deque-927d16f2b3f201b1.rlib" "/opt/crater/target/debug/deps/libcrossbeam_epoch-9b111a0846dc7592.rlib" "/opt/crater/target/debug/deps/libscopeguard-9b5b548023a82ae4.rlib" "/opt/crater/target/debug/deps/libmemoffset-e64a831d4be8abfc.rlib" "/opt/crater/target/debug/deps/libarrayvec-ec8906360acdff5b.rlib" "/opt/crater/target/debug/deps/libnodrop-844425db77ee9480.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-9f8eef7684cef0ea.rlib" "/opt/crater/target/debug/deps/libtokio_executor-45f8f98c41472383.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-c7636b44f63f0536.rlib" "/opt/crater/target/debug/deps/liblazy_static-eb33edc716f69401.rlib" "/opt/crater/target/debug/deps/libtokio_codec-92e76085bce9ee5c.rlib" "/opt/crater/target/debug/deps/libmio-0e2bc1a0dc1217dc.rlib" "/opt/crater/target/debug/deps/libnet2-629edbfe8fd82654.rlib" "/opt/crater/target/debug/deps/libhttparse-edd6757da9f4355f.rlib" "/opt/crater/target/debug/deps/libhttp_body-46aeae0ed0eedb85.rlib" "/opt/crater/target/debug/deps/libtokio_buf-a66ce76991cc653b.rlib" "/opt/crater/target/debug/deps/libh2-2b0fdd898b57bae6.rlib" "/opt/crater/target/debug/deps/libindexmap-b695f4379dbb1f0f.rlib" "/opt/crater/target/debug/deps/libstring-ce779bbcf59f03f6.rlib" "/opt/crater/target/debug/deps/libslab-38e1dff674bc2c67.rlib" "/opt/crater/target/debug/deps/libtokio_io-c0ed09c53cebd468.rlib" "/opt/crater/target/debug/deps/liblog-55cfa8f7ed258bff.rlib" "/opt/crater/target/debug/deps/libfutures_cpupool-87b63ccdc3471354.rlib" "/opt/crater/target/debug/deps/libnum_cpus-509d1090a02489e2.rlib" "/opt/crater/target/debug/deps/libheaders-9363a0ebdbe5b76b.rlib" "/opt/crater/target/debug/deps/libsha1-e8593ee128e7c73b.rlib" "/opt/crater/target/debug/deps/libfake_simd-9a7a25a362cdb1bc.rlib" "/opt/crater/target/debug/deps/libdigest-fec3093eb5607e70.rlib" "/opt/crater/target/debug/deps/libopaque_debug-255025b57567df48.rlib" "/opt/crater/target/debug/deps/libblock_buffer-7815bbd9d6df3126.rlib" "/opt/crater/target/debug/deps/libgeneric_array-b922dedc9fc93200.rlib" "/opt/crater/target/debug/deps/libtypenum-49005c187b93bc71.rlib" "/opt/crater/target/debug/deps/libblock_padding-370e4db4f9b1dfea.rlib" "/opt/crater/target/debug/deps/libbyte_tools-c381564ad523d754.rlib" "/opt/crater/target/debug/deps/libmime-2ad0b7e042b7ff0c.rlib" "/opt/crater/target/debug/deps/libunicase-9d7982dbb3c6947a.rlib" "/opt/crater/target/debug/deps/libheaders_core-6517b126a3c271ae.rlib" "/opt/crater/target/debug/deps/libbitflags-bcd34e8f74846360.rlib" "/opt/crater/target/debug/deps/libbase64-b248d06447d2c6c2.rlib" "/opt/crater/target/debug/deps/libflate2-41df7e666bb79755.rlib" "/opt/crater/target/debug/deps/libminiz_sys-af58369b556d0052.rlib" "/opt/crater/target/debug/deps/libcrc32fast-6889bae451d673e1.rlib" "/opt/crater/target/debug/deps/libcfg_if-3028bdd7b8e15bb5.rlib" "/opt/crater/target/debug/deps/libchrono-2076eac5ab4c7ca0.rlib" "/opt/crater/target/debug/deps/libnum_integer-d8f0709d8b9fa165.rlib" "/opt/crater/target/debug/deps/libtime-29b9853d922d9d06.rlib" "/opt/crater/target/debug/deps/libchecked-9036e83be392b549.rlib" "/opt/crater/target/debug/deps/libatoi-fea4f50b99dfa35e.rlib" "/opt/crater/target/debug/deps/libnum_traits-d11dcc7883adaecb.rlib" "/opt/crater/target/debug/deps/libhttp-88ee4a9dc93d3818.rlib" "/opt/crater/target/debug/deps/libitoa-d35f0a89557c3310.rlib" "/opt/crater/target/debug/deps/libfnv-0b54693efaf27e2a.rlib" "/opt/crater/target/debug/deps/libbytes-6eca479c9983e64d.rlib" "/opt/crater/target/debug/deps/libeither-718ea347c7788d34.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/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" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: 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 `tower-web`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/middleware/cors/config.rs:110:21 [INFO] [stderr] | [INFO] [stderr] 110 | let mut headers = self.basic_headers(); [INFO] [stderr] | ----^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] note: lint level defined here [INFO] [stderr] --> src/lib.rs:3:24 [INFO] [stderr] | [INFO] [stderr] 3 | #![cfg_attr(test, deny(warnings))] [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] = note: #[warn(unused_mut)] implied by #[warn(warnings)] [INFO] [stderr] [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/catch-a10c202878f2d128.catch.4krmicvw-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.catch.4krmicvw-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/catch-a10c202878f2d128" "/opt/crater/target/debug/examples/catch-a10c202878f2d128.3jzd8b8amfqbhbxt.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-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/libtower_web-d4c066935ace9a56.rlib" "/opt/crater/target/debug/deps/libproc_macro_hack-8cfdb398f731d0d0.rlib" "/opt/crater/target/debug/deps/libhandlebars-67eccd9f2843ea54.rlib" "/opt/crater/target/debug/deps/libwalkdir-9732b146893c009a.rlib" "/opt/crater/target/debug/deps/libsame_file-20f5d349f4fddef0.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/libquick_error-a2165722eb49e44c.rlib" "/opt/crater/target/debug/deps/libpest-4aa570d3757c88ab.rlib" "/opt/crater/target/debug/deps/libvoid-03072202629d0c80.rlib" "/opt/crater/target/debug/deps/libtower_service-55206a573a5d47f1.rlib" "/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib" "/opt/crater/target/debug/deps/liburl-ebaefb0ef9c8c191.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/libdtoa-8ca04c299b5dbe41.rlib" "/opt/crater/target/debug/deps/libserde_plain-00df4db75d912098.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/libpercent_encoding-7ae675a5263db170.rlib" "/opt/crater/target/debug/deps/libmime_guess-d1ca6e689a1cb5de.rlib" "/opt/crater/target/debug/deps/libphf-9a254bd9e26eecdf.rlib" "/opt/crater/target/debug/deps/libphf_shared-b8476647b4aaa516.rlib" "/opt/crater/target/debug/deps/libunicase-b11bfdbf115a8339.rlib" "/opt/crater/target/debug/deps/libsiphasher-d8c9cc1cc66f074e.rlib" "/opt/crater/target/debug/deps/libmime-2eb3550a6108d090.rlib" "/opt/crater/target/debug/deps/liblog-5ad476e9af8f39be.rlib" "/opt/crater/target/debug/deps/libhyper-06795c16fb04c038.rlib" "/opt/crater/target/debug/deps/libwant-85d6e374eaaf3dc8.rlib" "/opt/crater/target/debug/deps/libtry_lock-5d6601f1f27a9bbb.rlib" "/opt/crater/target/debug/deps/libtokio-cdadcef89a2c6c64.rlib" "/opt/crater/target/debug/deps/libtokio_trace_core-6ad90247803017ff.rlib" "/opt/crater/target/debug/deps/libtokio_uds-df5b867fc57b750a.rlib" "/opt/crater/target/debug/deps/libmio_uds-f6319a558176422a.rlib" "/opt/crater/target/debug/deps/libtokio_udp-278253ae028f65ce.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c93f6415d850a3a5.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-e1ed115d3d9a46e1.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-816504c2da44c7c7.rlib" "/opt/crater/target/debug/deps/libtokio_sync-be5eabd68f6f693c.rlib" "/opt/crater/target/debug/deps/libparking_lot-b0edbae249953a77.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-07c1c93dbdd48fd5.rlib" "/opt/crater/target/debug/deps/libsmallvec-8ab4c1b4228c68ef.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/libtokio_fs-5634bae14b0a41a5.rlib" "/opt/crater/target/debug/deps/libtokio_threadpool-ae2d6527c4c0c909.rlib" "/opt/crater/target/debug/deps/librand-65b8c47b411eebc9.rlib" "/opt/crater/target/debug/deps/librand_xorshift-ff7441af0a9fb520.rlib" "/opt/crater/target/debug/deps/librand_pcg-8d4de0bb8369ce1b.rlib" "/opt/crater/target/debug/deps/librand_hc-04d208c1d9952d78.rlib" "/opt/crater/target/debug/deps/librand_chacha-7a7143ada6e2f196.rlib" "/opt/crater/target/debug/deps/librand_isaac-3a9329c693cd3f14.rlib" "/opt/crater/target/debug/deps/librand_core-16454af531e76575.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/libcrossbeam_queue-f6668dbd335cb278.rlib" "/opt/crater/target/debug/deps/libcrossbeam_deque-927d16f2b3f201b1.rlib" "/opt/crater/target/debug/deps/libcrossbeam_epoch-9b111a0846dc7592.rlib" "/opt/crater/target/debug/deps/libscopeguard-9b5b548023a82ae4.rlib" "/opt/crater/target/debug/deps/libmemoffset-e64a831d4be8abfc.rlib" "/opt/crater/target/debug/deps/libarrayvec-ec8906360acdff5b.rlib" "/opt/crater/target/debug/deps/libnodrop-844425db77ee9480.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-9f8eef7684cef0ea.rlib" "/opt/crater/target/debug/deps/libtokio_executor-45f8f98c41472383.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-c7636b44f63f0536.rlib" "/opt/crater/target/debug/deps/liblazy_static-eb33edc716f69401.rlib" "/opt/crater/target/debug/deps/libtokio_codec-92e76085bce9ee5c.rlib" "/opt/crater/target/debug/deps/libmio-0e2bc1a0dc1217dc.rlib" "/opt/crater/target/debug/deps/libnet2-629edbfe8fd82654.rlib" "/opt/crater/target/debug/deps/libhttparse-edd6757da9f4355f.rlib" "/opt/crater/target/debug/deps/libhttp_body-46aeae0ed0eedb85.rlib" "/opt/crater/target/debug/deps/libtokio_buf-a66ce76991cc653b.rlib" "/opt/crater/target/debug/deps/libh2-2b0fdd898b57bae6.rlib" "/opt/crater/target/debug/deps/libindexmap-b695f4379dbb1f0f.rlib" "/opt/crater/target/debug/deps/libstring-ce779bbcf59f03f6.rlib" "/opt/crater/target/debug/deps/libslab-38e1dff674bc2c67.rlib" "/opt/crater/target/debug/deps/libtokio_io-c0ed09c53cebd468.rlib" "/opt/crater/target/debug/deps/liblog-55cfa8f7ed258bff.rlib" "/opt/crater/target/debug/deps/libfutures_cpupool-87b63ccdc3471354.rlib" "/opt/crater/target/debug/deps/libnum_cpus-509d1090a02489e2.rlib" "/opt/crater/target/debug/deps/libheaders-9363a0ebdbe5b76b.rlib" "/opt/crater/target/debug/deps/libsha1-e8593ee128e7c73b.rlib" "/opt/crater/target/debug/deps/libfake_simd-9a7a25a362cdb1bc.rlib" "/opt/crater/target/debug/deps/libdigest-fec3093eb5607e70.rlib" "/opt/crater/target/debug/deps/libopaque_debug-255025b57567df48.rlib" "/opt/crater/target/debug/deps/libblock_buffer-7815bbd9d6df3126.rlib" "/opt/crater/target/debug/deps/libgeneric_array-b922dedc9fc93200.rlib" "/opt/crater/target/debug/deps/libtypenum-49005c187b93bc71.rlib" "/opt/crater/target/debug/deps/libblock_padding-370e4db4f9b1dfea.rlib" "/opt/crater/target/debug/deps/libbyte_tools-c381564ad523d754.rlib" "/opt/crater/target/debug/deps/libmime-2ad0b7e042b7ff0c.rlib" "/opt/crater/target/debug/deps/libunicase-9d7982dbb3c6947a.rlib" "/opt/crater/target/debug/deps/libheaders_core-6517b126a3c271ae.rlib" "/opt/crater/target/debug/deps/libhttp-88ee4a9dc93d3818.rlib" "/opt/crater/target/debug/deps/libitoa-d35f0a89557c3310.rlib" "/opt/crater/target/debug/deps/libfnv-0b54693efaf27e2a.rlib" "/opt/crater/target/debug/deps/libbitflags-bcd34e8f74846360.rlib" "/opt/crater/target/debug/deps/libbase64-b248d06447d2c6c2.rlib" "/opt/crater/target/debug/deps/libflate2-41df7e666bb79755.rlib" "/opt/crater/target/debug/deps/libminiz_sys-af58369b556d0052.rlib" "/opt/crater/target/debug/deps/libcrc32fast-6889bae451d673e1.rlib" "/opt/crater/target/debug/deps/libcfg_if-3028bdd7b8e15bb5.rlib" "/opt/crater/target/debug/deps/libchrono-2076eac5ab4c7ca0.rlib" "/opt/crater/target/debug/deps/libnum_integer-d8f0709d8b9fa165.rlib" "/opt/crater/target/debug/deps/libtime-29b9853d922d9d06.rlib" "/opt/crater/target/debug/deps/libchecked-9036e83be392b549.rlib" "/opt/crater/target/debug/deps/libbytes-6eca479c9983e64d.rlib" "/opt/crater/target/debug/deps/libeither-718ea347c7788d34.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/libatoi-fea4f50b99dfa35e.rlib" "/opt/crater/target/debug/deps/libnum_traits-d11dcc7883adaecb.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" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: 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 `tower-web`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: linking with `cc` failed: signal: 9 [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/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.args.ee2yczmz-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0" "/opt/crater/target/debug/examples/args-1b0b1d6a46c661f0.32blmpsbzb483izj.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-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/libtower_web-d4c066935ace9a56.rlib" "/opt/crater/target/debug/deps/libproc_macro_hack-8cfdb398f731d0d0.rlib" "/opt/crater/target/debug/deps/libhandlebars-67eccd9f2843ea54.rlib" "/opt/crater/target/debug/deps/libwalkdir-9732b146893c009a.rlib" "/opt/crater/target/debug/deps/libsame_file-20f5d349f4fddef0.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/libquick_error-a2165722eb49e44c.rlib" "/opt/crater/target/debug/deps/libpest-4aa570d3757c88ab.rlib" "/opt/crater/target/debug/deps/libvoid-03072202629d0c80.rlib" "/opt/crater/target/debug/deps/libtower_service-55206a573a5d47f1.rlib" "/opt/crater/target/debug/deps/libserde_urlencoded-4387b4b8460fb00a.rlib" "/opt/crater/target/debug/deps/liburl-ebaefb0ef9c8c191.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/libdtoa-8ca04c299b5dbe41.rlib" "/opt/crater/target/debug/deps/libserde_plain-00df4db75d912098.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/libpercent_encoding-7ae675a5263db170.rlib" "/opt/crater/target/debug/deps/libmime_guess-d1ca6e689a1cb5de.rlib" "/opt/crater/target/debug/deps/libphf-9a254bd9e26eecdf.rlib" "/opt/crater/target/debug/deps/libphf_shared-b8476647b4aaa516.rlib" "/opt/crater/target/debug/deps/libunicase-b11bfdbf115a8339.rlib" "/opt/crater/target/debug/deps/libsiphasher-d8c9cc1cc66f074e.rlib" "/opt/crater/target/debug/deps/libmime-2eb3550a6108d090.rlib" "/opt/crater/target/debug/deps/liblog-5ad476e9af8f39be.rlib" "/opt/crater/target/debug/deps/libhyper-06795c16fb04c038.rlib" "/opt/crater/target/debug/deps/libwant-85d6e374eaaf3dc8.rlib" "/opt/crater/target/debug/deps/libtry_lock-5d6601f1f27a9bbb.rlib" "/opt/crater/target/debug/deps/libtokio-cdadcef89a2c6c64.rlib" "/opt/crater/target/debug/deps/libtokio_trace_core-6ad90247803017ff.rlib" "/opt/crater/target/debug/deps/libtokio_uds-df5b867fc57b750a.rlib" "/opt/crater/target/debug/deps/libmio_uds-f6319a558176422a.rlib" "/opt/crater/target/debug/deps/libtokio_udp-278253ae028f65ce.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c93f6415d850a3a5.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-e1ed115d3d9a46e1.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-816504c2da44c7c7.rlib" "/opt/crater/target/debug/deps/libtokio_sync-be5eabd68f6f693c.rlib" "/opt/crater/target/debug/deps/libparking_lot-b0edbae249953a77.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-07c1c93dbdd48fd5.rlib" "/opt/crater/target/debug/deps/libsmallvec-8ab4c1b4228c68ef.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/libtokio_fs-5634bae14b0a41a5.rlib" "/opt/crater/target/debug/deps/libtokio_threadpool-ae2d6527c4c0c909.rlib" "/opt/crater/target/debug/deps/librand-65b8c47b411eebc9.rlib" "/opt/crater/target/debug/deps/librand_xorshift-ff7441af0a9fb520.rlib" "/opt/crater/target/debug/deps/librand_pcg-8d4de0bb8369ce1b.rlib" "/opt/crater/target/debug/deps/librand_hc-04d208c1d9952d78.rlib" "/opt/crater/target/debug/deps/librand_chacha-7a7143ada6e2f196.rlib" "/opt/crater/target/debug/deps/librand_isaac-3a9329c693cd3f14.rlib" "/opt/crater/target/debug/deps/librand_core-16454af531e76575.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/libcrossbeam_queue-f6668dbd335cb278.rlib" "/opt/crater/target/debug/deps/libcrossbeam_deque-927d16f2b3f201b1.rlib" "/opt/crater/target/debug/deps/libcrossbeam_epoch-9b111a0846dc7592.rlib" "/opt/crater/target/debug/deps/libscopeguard-9b5b548023a82ae4.rlib" "/opt/crater/target/debug/deps/libmemoffset-e64a831d4be8abfc.rlib" "/opt/crater/target/debug/deps/libarrayvec-ec8906360acdff5b.rlib" "/opt/crater/target/debug/deps/libnodrop-844425db77ee9480.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-9f8eef7684cef0ea.rlib" "/opt/crater/target/debug/deps/libtokio_executor-45f8f98c41472383.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-c7636b44f63f0536.rlib" "/opt/crater/target/debug/deps/liblazy_static-eb33edc716f69401.rlib" "/opt/crater/target/debug/deps/libtokio_codec-92e76085bce9ee5c.rlib" "/opt/crater/target/debug/deps/libmio-0e2bc1a0dc1217dc.rlib" "/opt/crater/target/debug/deps/libnet2-629edbfe8fd82654.rlib" "/opt/crater/target/debug/deps/libhttparse-edd6757da9f4355f.rlib" "/opt/crater/target/debug/deps/libhttp_body-46aeae0ed0eedb85.rlib" "/opt/crater/target/debug/deps/libtokio_buf-a66ce76991cc653b.rlib" "/opt/crater/target/debug/deps/libh2-2b0fdd898b57bae6.rlib" "/opt/crater/target/debug/deps/libindexmap-b695f4379dbb1f0f.rlib" "/opt/crater/target/debug/deps/libstring-ce779bbcf59f03f6.rlib" "/opt/crater/target/debug/deps/libslab-38e1dff674bc2c67.rlib" "/opt/crater/target/debug/deps/libtokio_io-c0ed09c53cebd468.rlib" "/opt/crater/target/debug/deps/liblog-55cfa8f7ed258bff.rlib" "/opt/crater/target/debug/deps/libfutures_cpupool-87b63ccdc3471354.rlib" "/opt/crater/target/debug/deps/libnum_cpus-509d1090a02489e2.rlib" "/opt/crater/target/debug/deps/libheaders-9363a0ebdbe5b76b.rlib" "/opt/crater/target/debug/deps/libsha1-e8593ee128e7c73b.rlib" "/opt/crater/target/debug/deps/libfake_simd-9a7a25a362cdb1bc.rlib" "/opt/crater/target/debug/deps/libdigest-fec3093eb5607e70.rlib" "/opt/crater/target/debug/deps/libopaque_debug-255025b57567df48.rlib" "/opt/crater/target/debug/deps/libblock_buffer-7815bbd9d6df3126.rlib" "/opt/crater/target/debug/deps/libgeneric_array-b922dedc9fc93200.rlib" "/opt/crater/target/debug/deps/libtypenum-49005c187b93bc71.rlib" "/opt/crater/target/debug/deps/libblock_padding-370e4db4f9b1dfea.rlib" "/opt/crater/target/debug/deps/libbyte_tools-c381564ad523d754.rlib" "/opt/crater/target/debug/deps/libmime-2ad0b7e042b7ff0c.rlib" "/opt/crater/target/debug/deps/libunicase-9d7982dbb3c6947a.rlib" "/opt/crater/target/debug/deps/libheaders_core-6517b126a3c271ae.rlib" "/opt/crater/target/debug/deps/libhttp-88ee4a9dc93d3818.rlib" "/opt/crater/target/debug/deps/libitoa-d35f0a89557c3310.rlib" "/opt/crater/target/debug/deps/libfnv-0b54693efaf27e2a.rlib" "/opt/crater/target/debug/deps/libbitflags-bcd34e8f74846360.rlib" "/opt/crater/target/debug/deps/libbase64-b248d06447d2c6c2.rlib" "/opt/crater/target/debug/deps/libfutures-2204f6374ace2c39.rlib" "/opt/crater/target/debug/deps/libflate2-41df7e666bb79755.rlib" "/opt/crater/target/debug/deps/libminiz_sys-af58369b556d0052.rlib" "/opt/crater/target/debug/deps/libcrc32fast-6889bae451d673e1.rlib" "/opt/crater/target/debug/deps/libcfg_if-3028bdd7b8e15bb5.rlib" "/opt/crater/target/debug/deps/libchrono-2076eac5ab4c7ca0.rlib" "/opt/crater/target/debug/deps/libnum_integer-d8f0709d8b9fa165.rlib" "/opt/crater/target/debug/deps/libtime-29b9853d922d9d06.rlib" "/opt/crater/target/debug/deps/libchecked-9036e83be392b549.rlib" "/opt/crater/target/debug/deps/libbytes-6eca479c9983e64d.rlib" "/opt/crater/target/debug/deps/libeither-718ea347c7788d34.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/libatoi-fea4f50b99dfa35e.rlib" "/opt/crater/target/debug/deps/libnum_traits-d11dcc7883adaecb.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" "-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 `tower-web`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "d8c609a3cf21d436201cd672b3b903e7eedd9e148778d02039a6d0cfc937f2c4"` [INFO] running `"docker" "rm" "-f" "d8c609a3cf21d436201cd672b3b903e7eedd9e148778d02039a6d0cfc937f2c4"` [INFO] [stdout] d8c609a3cf21d436201cd672b3b903e7eedd9e148778d02039a6d0cfc937f2c4