[INFO] crate reool 0.11.0 is already in cache [INFO] extracting crate reool 0.11.0 into work/ex/beta-1.38-1/sources/1.37.0/reg/reool/0.11.0 [INFO] extracting crate reool 0.11.0 into work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/reool/0.11.0 [INFO] validating manifest of reool-0.11.0 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 reool-0.11.0 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 reool-0.11.0 [INFO] removed 2 missing examples [INFO] finished frobbing reool-0.11.0 [INFO] frobbed toml for reool-0.11.0 written to work/ex/beta-1.38-1/sources/1.37.0/reg/reool/0.11.0/Cargo.toml [INFO] started frobbing reool-0.11.0 [INFO] removed 2 missing examples [INFO] finished frobbing reool-0.11.0 [INFO] frobbed toml for reool-0.11.0 written to work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/reool/0.11.0/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] [stderr] Blocking waiting for file lock on package cache [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing reool-0.11.0 against beta-2019-08-13 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-7/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/reool/0.11.0:/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" "+beta-2019-08-13" "build" "--frozen"` [INFO] [stdout] 31c9bbd076df96598afc57af98d23db8e829036cd68e8068178cc9eb6a7e1236 [INFO] running `"docker" "start" "-a" "31c9bbd076df96598afc57af98d23db8e829036cd68e8068178cc9eb6a7e1236"` [INFO] [stderr] Compiling combine v3.8.1 [INFO] [stderr] Compiling redis v0.11.0 [INFO] [stderr] Compiling reool v0.11.0 (/opt/crater/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:12:23 [INFO] [stderr] | [INFO] [stderr] 12 | cause: Option>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn StdError + 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/error.rs:79:32 [INFO] [stderr] | [INFO] [stderr] 79 | fn cause(&self) -> Option<&StdError> { [INFO] [stderr] | ^^^^^^^^ help: use `dyn`: `dyn StdError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:80:54 [INFO] [stderr] | [INFO] [stderr] 80 | self.cause.as_ref().map(|cause| &**cause as &StdError) [INFO] [stderr] | ^^^^^^^^ help: use `dyn`: `dyn StdError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/mod.rs:179:58 [INFO] [stderr] | [INFO] [stderr] 179 | Box::new(future::err(())) as Box + Send> [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future + Send` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/mod.rs:270:16 [INFO] [stderr] | [INFO] [stderr] 270 | inner: Box, Error = CheckoutError> + Send + 'static>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future, Error = CheckoutError> + Send + 'static` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/mod.rs:347:16 [INFO] [stderr] | [INFO] [stderr] 347 | inner: Box, Error = NewConnectionError> + Send + 'static>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future, Error = NewConnectionError> + Send + 'static` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/mod.rs:382:32 [INFO] [stderr] | [INFO] [stderr] 382 | fn cause(&self) -> Option<&StdError> { [INFO] [stderr] | ^^^^^^^^ help: use `dyn`: `dyn StdError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/connection_factory.rs:14:16 [INFO] [stderr] | [INFO] [stderr] 14 | cause: Box, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn StdError + Send + 'static` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/connection_factory.rs:35:16 [INFO] [stderr] | [INFO] [stderr] 35 | inner: Box + Send + 'static>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future + Send + 'static` [INFO] [stderr] [INFO] [stderr] warning: method is never used: `remove_conn` [INFO] [stderr] --> src/pool_internal/inner_pool.rs:266:5 [INFO] [stderr] | [INFO] [stderr] 266 | pub(super) fn remove_conn(&self) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant is never constructed: `ReducePoolSize` [INFO] [stderr] --> src/pool_internal/inner_pool.rs:403:5 [INFO] [stderr] | [INFO] [stderr] 403 | ReducePoolSize, [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: method is never used: `reduce_pool_size` [INFO] [stderr] --> src/pool_internal/inner_pool.rs:417:5 [INFO] [stderr] | [INFO] [stderr] 417 | pub fn reduce_pool_size() -> Self { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: method is never used: `remove_connection` [INFO] [stderr] --> src/pool_internal/mod.rs:126:5 [INFO] [stderr] | [INFO] [stderr] 126 | pub fn remove_connection(&self) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 29.06s [INFO] running `"docker" "inspect" "31c9bbd076df96598afc57af98d23db8e829036cd68e8068178cc9eb6a7e1236"` [INFO] running `"docker" "rm" "-f" "31c9bbd076df96598afc57af98d23db8e829036cd68e8068178cc9eb6a7e1236"` [INFO] [stdout] 31c9bbd076df96598afc57af98d23db8e829036cd68e8068178cc9eb6a7e1236 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-7/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/reool/0.11.0:/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" "+beta-2019-08-13" "test" "--frozen" "--no-run"` [INFO] [stdout] eaaee566a2bf4ccc66a6f15d2695bd324c874487719dfb82b655291fea01860e [INFO] running `"docker" "start" "-a" "eaaee566a2bf4ccc66a6f15d2695bd324c874487719dfb82b655291fea01860e"` [INFO] [stderr] Compiling pretty_env_logger v0.3.1 [INFO] [stderr] Compiling reool v0.11.0 (/opt/crater/workdir) [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `metrix` [INFO] [stderr] --> examples/metrix_multi_node.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use metrix::driver::DriverBuilder; [INFO] [stderr] | ^^^^^^ use of undeclared type or module `metrix` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `DriverBuilder` [INFO] [stderr] --> examples/metrix_multi_node.rs:18:22 [INFO] [stderr] | [INFO] [stderr] 18 | let mut driver = DriverBuilder::default() [INFO] [stderr] | ^^^^^^^^^^^^^ use of undeclared type or module `DriverBuilder` [INFO] [stderr] [INFO] [stderr] warning: unused import: `metrix::driver::DriverBuilder` [INFO] [stderr] --> examples/metrix_multi_node.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use metrix::driver::DriverBuilder; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `metrix` [INFO] [stderr] --> examples/metrix_single_node.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use metrix::driver::DriverBuilder; [INFO] [stderr] | ^^^^^^ use of undeclared type or module `metrix` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `DriverBuilder` [INFO] [stderr] --> examples/metrix_single_node.rs:19:22 [INFO] [stderr] | [INFO] [stderr] 19 | let mut driver = DriverBuilder::default() [INFO] [stderr] | ^^^^^^^^^^^^^ use of undeclared type or module `DriverBuilder` [INFO] [stderr] [INFO] [stderr] warning: unused import: `metrix::driver::DriverBuilder` [INFO] [stderr] --> examples/metrix_single_node.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use metrix::driver::DriverBuilder; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:12:23 [INFO] [stderr] | [INFO] [stderr] 12 | cause: Option>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn StdError + 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/error.rs:79:32 [INFO] [stderr] | [INFO] [stderr] 79 | fn cause(&self) -> Option<&StdError> { [INFO] [stderr] | ^^^^^^^^ help: use `dyn`: `dyn StdError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:80:54 [INFO] [stderr] | [INFO] [stderr] 80 | self.cause.as_ref().map(|cause| &**cause as &StdError) [INFO] [stderr] | ^^^^^^^^ help: use `dyn`: `dyn StdError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/mod.rs:179:58 [INFO] [stderr] | [INFO] [stderr] 179 | Box::new(future::err(())) as Box + Send> [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future + Send` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/mod.rs:270:16 [INFO] [stderr] | [INFO] [stderr] 270 | inner: Box, Error = CheckoutError> + Send + 'static>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future, Error = CheckoutError> + Send + 'static` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/mod.rs:347:16 [INFO] [stderr] | [INFO] [stderr] 347 | inner: Box, Error = NewConnectionError> + Send + 'static>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future, Error = NewConnectionError> + Send + 'static` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/mod.rs:382:32 [INFO] [stderr] | [INFO] [stderr] 382 | fn cause(&self) -> Option<&StdError> { [INFO] [stderr] | ^^^^^^^^ help: use `dyn`: `dyn StdError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/test.rs:299:40 [INFO] [stderr] | [INFO] [stderr] 299 | fn cause(&self) -> Option<&StdError> { [INFO] [stderr] | ^^^^^^^^ help: use `dyn`: `dyn StdError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pool_internal/test.rs:336:40 [INFO] [stderr] | [INFO] [stderr] 336 | fn cause(&self) -> Option<&StdError> { [INFO] [stderr] | ^^^^^^^^ help: use `dyn`: `dyn StdError` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/connection_factory.rs:14:16 [INFO] [stderr] | [INFO] [stderr] 14 | cause: Box, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn StdError + Send + 'static` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/connection_factory.rs:35:16 [INFO] [stderr] | [INFO] [stderr] 35 | inner: Box + Send + 'static>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future + Send + 'static` [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `instrumented_with_metrix` found for type `reool::config::Builder<()>` in the current scope [INFO] [stderr] --> examples/metrix_multi_node.rs:35:10 [INFO] [stderr] | [INFO] [stderr] 35 | .instrumented_with_metrix(&mut driver, Default::default()) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to 3 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0433, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0433`. [INFO] [stderr] error[E0599]: no method named `instrumented_with_metrix` found for type `reool::config::Builder<()>` in the current scope [INFO] [stderr] --> examples/metrix_single_node.rs:33:10 [INFO] [stderr] | [INFO] [stderr] 33 | .instrumented_with_metrix(&mut driver, Default::default()) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: Could not compile `reool`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to 3 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0433, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0433`. [INFO] [stderr] error: Could not compile `reool`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: method is never used: `remove_conn` [INFO] [stderr] --> src/pool_internal/inner_pool.rs:266:5 [INFO] [stderr] | [INFO] [stderr] 266 | pub(super) fn remove_conn(&self) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant is never constructed: `ReducePoolSize` [INFO] [stderr] --> src/pool_internal/inner_pool.rs:403:5 [INFO] [stderr] | [INFO] [stderr] 403 | ReducePoolSize, [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: method is never used: `reduce_pool_size` [INFO] [stderr] --> src/pool_internal/inner_pool.rs:417:5 [INFO] [stderr] | [INFO] [stderr] 417 | pub fn reduce_pool_size() -> Self { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: method is never used: `remove_connection` [INFO] [stderr] --> src/pool_internal/mod.rs:126:5 [INFO] [stderr] | [INFO] [stderr] 126 | pub fn remove_connection(&self) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [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/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.write_read.ckjab2to-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be" "/opt/crater/target/debug/examples/write_read-ff0e2bc41879c1be.3obi9epoebzqrg3q.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libreool-a4405e90363255af.rlib" "/opt/crater/target/debug/deps/libparking_lot-524102406aaa848b.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-7bbf7d1c69263905.rlib" "/opt/crater/target/debug/deps/liblock_api-902b86ad805215eb.rlib" "/opt/crater/target/debug/deps/libredis-255a1e81964b21ad.rlib" "/opt/crater/target/debug/deps/liburl-ee604ccef16e6499.rlib" "/opt/crater/target/debug/deps/libpercent_encoding-b2b1eddedcc9d5cc.rlib" "/opt/crater/target/debug/deps/libidna-7075ca6261d9bac1.rlib" "/opt/crater/target/debug/deps/libunicode_normalization-b16029f4e9e6461c.rlib" "/opt/crater/target/debug/deps/libunicode_bidi-020a270ca49d2bee.rlib" "/opt/crater/target/debug/deps/libmatches-9f7ad04d44b47530.rlib" "/opt/crater/target/debug/deps/libsha1-19561cf7d08c449a.rlib" "/opt/crater/target/debug/deps/libitoa-fbd08118d5c2ed14.rlib" "/opt/crater/target/debug/deps/libdtoa-d00aefffc4eb47c6.rlib" "/opt/crater/target/debug/deps/libcombine-d48502e5e39eb934.rlib" "/opt/crater/target/debug/deps/libascii-2888df71552dc990.rlib" "/opt/crater/target/debug/deps/libunreachable-7dd4ced4819ef3ab.rlib" "/opt/crater/target/debug/deps/libvoid-4fb26e3b0cb57bde.rlib" "/opt/crater/target/debug/deps/libeither-8defd4767bf20ea6.rlib" "/opt/crater/target/debug/deps/librand-8b15411866abd9f1.rlib" "/opt/crater/target/debug/deps/librand_chacha-7ab0375c8e73b81e.rlib" "/opt/crater/target/debug/deps/libc2_chacha-f16892c13faa6da1.rlib" "/opt/crater/target/debug/deps/libppv_lite86-d642cb1e0049ec58.rlib" "/opt/crater/target/debug/deps/librand_core-b98b73c4d658421f.rlib" "/opt/crater/target/debug/deps/libgetrandom-4696f98276bb287c.rlib" "/opt/crater/target/debug/deps/libtokio-241773387278fbde.rlib" "/opt/crater/target/debug/deps/libtokio_uds-28aa52c0d2ecdc57.rlib" "/opt/crater/target/debug/deps/libmio_uds-b1d44c3a55c7b107.rlib" "/opt/crater/target/debug/deps/libtokio_udp-3493e22769a7645e.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c6e40c97d9def47d.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-5a21d8b587de7d90.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-dc2897a641e6f9f9.rlib" "/opt/crater/target/debug/deps/libtokio_sync-e9d8e5fe6c538a0e.rlib" "/opt/crater/target/debug/deps/libfnv-6e18f98be4338210.rlib" "/opt/crater/target/debug/deps/libparking_lot-6d6274efc8401f80.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-869ed462af3e9515.rlib" "/opt/crater/target/debug/deps/libsmallvec-7295b1a781bd56b7.rlib" "/opt/crater/target/debug/deps/liblock_api-fc146aa09c055915.rlib" "/opt/crater/target/debug/deps/libowning_ref-3fc2847bd21aa6e0.rlib" "/opt/crater/target/debug/deps/libstable_deref_trait-0255958156eadff4.rlib" "/opt/crater/target/debug/deps/libscopeguard-22a7afc64d55fe2c.rlib" "/opt/crater/target/debug/deps/libtokio_fs-e1502f8d9eae2cc9.rlib" "/opt/crater/target/debug/deps/libtokio_threadpool-b056b92c7aa26aea.rlib" "/opt/crater/target/debug/deps/librand-0a4630b57dcc57b3.rlib" "/opt/crater/target/debug/deps/librand_xorshift-aba648178ccafa60.rlib" "/opt/crater/target/debug/deps/librand_pcg-ed671db4fe3757e2.rlib" "/opt/crater/target/debug/deps/librand_hc-9a65771b9d152351.rlib" "/opt/crater/target/debug/deps/librand_chacha-1b9e58560472e74b.rlib" "/opt/crater/target/debug/deps/librand_isaac-3807d01c3a327700.rlib" "/opt/crater/target/debug/deps/librand_core-4eee27b20de9a341.rlib" "/opt/crater/target/debug/deps/librand_os-4634e01c13ceff4d.rlib" "/opt/crater/target/debug/deps/librand_jitter-a13c2857ac7f2734.rlib" "/opt/crater/target/debug/deps/librand_core-a5a514f3409fd81c.rlib" "/opt/crater/target/debug/deps/libcrossbeam_queue-2589c79105784e0d.rlib" "/opt/crater/target/debug/deps/libcrossbeam_deque-5a68c737302d997f.rlib" "/opt/crater/target/debug/deps/libcrossbeam_epoch-8ce32638c5f827b5.rlib" "/opt/crater/target/debug/deps/libscopeguard-0bc963131f7c0d17.rlib" "/opt/crater/target/debug/deps/libmemoffset-d44318d335d18b97.rlib" "/opt/crater/target/debug/deps/libarrayvec-1cff3f0e2df954b3.rlib" "/opt/crater/target/debug/deps/libnodrop-7f98e5f8ec110eeb.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-747363cf0ed087f7.rlib" "/opt/crater/target/debug/deps/libtokio_executor-bdf861f407e5fa85.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-e32b73b6a212c837.rlib" "/opt/crater/target/debug/deps/libtokio_codec-f600767da57615b5.rlib" "/opt/crater/target/debug/deps/libtokio_io-cf9e939a0533315f.rlib" "/opt/crater/target/debug/deps/libnum_cpus-b569161181e0c021.rlib" "/opt/crater/target/debug/deps/libmio-abd445e00221b11c.rlib" "/opt/crater/target/debug/deps/libslab-9297145f06665f9b.rlib" "/opt/crater/target/debug/deps/libnet2-bb453ffc26c3f792.rlib" "/opt/crater/target/debug/deps/libbytes-ed85d24d60fcc292.rlib" "/opt/crater/target/debug/deps/libiovec-700e4a654a679356.rlib" "/opt/crater/target/debug/deps/libbyteorder-98f71e4258b709b0.rlib" "/opt/crater/target/debug/deps/libpretty_env_logger-276522a5e50373f8.rlib" "/opt/crater/target/debug/deps/libchrono-6d874ac3fbc64c03.rlib" "/opt/crater/target/debug/deps/libnum_integer-f48a816a5a5da78f.rlib" "/opt/crater/target/debug/deps/libnum_traits-81444709e4b8de32.rlib" "/opt/crater/target/debug/deps/libtime-c375bf02baafb2fd.rlib" "/opt/crater/target/debug/deps/libenv_logger-60ee7903c4014a8e.rlib" "/opt/crater/target/debug/deps/libregex-2f54045970e77773.rlib" "/opt/crater/target/debug/deps/libregex_syntax-bd99c61924ee7656.rlib" "/opt/crater/target/debug/deps/libthread_local-2ae771cec36f83c2.rlib" "/opt/crater/target/debug/deps/liblazy_static-1f7a4359e40a6da9.rlib" "/opt/crater/target/debug/deps/libaho_corasick-d762a0026dd53dbb.rlib" "/opt/crater/target/debug/deps/libmemchr-23e7689be8a12a36.rlib" "/opt/crater/target/debug/deps/libatty-22eb3b2ac1d714c2.rlib" "/opt/crater/target/debug/deps/liblibc-37f3d1c853b3b7bd.rlib" "/opt/crater/target/debug/deps/libhumantime-fe7582828726b442.rlib" "/opt/crater/target/debug/deps/libquick_error-f50ea951eae373ef.rlib" "/opt/crater/target/debug/deps/libtermcolor-79496754b4470ebc.rlib" "/opt/crater/target/debug/deps/liblog-6796845c78a3960b.rlib" "/opt/crater/target/debug/deps/libcfg_if-c978b2f886ff1de7.rlib" "/opt/crater/target/debug/deps/libfutures-f60afb80ba7dd5f9.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-1d6d86bd078a28e9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e9721e46a424e2a9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-c07193698f282147.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-6da45690f3863086.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-690797036dd27680.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-d3896ccbfd8eda2b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-7cccc3739e3d7623.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-5e9ba178a513cd29.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-5ca9f83bf63d1f4b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-bba1c7ef9e950882.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-e23c9de62012deb5.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-9b59dffdcd513d5d.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-17392340ab2e4a97.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-ac21508a81e3f7f3.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: 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/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.runtime.1hdi0115-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32" "/opt/crater/target/debug/examples/runtime-c0e08457ff2b7a32.3b4ycrrgzywyr1vp.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libreool-a4405e90363255af.rlib" "/opt/crater/target/debug/deps/libparking_lot-524102406aaa848b.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-7bbf7d1c69263905.rlib" "/opt/crater/target/debug/deps/liblock_api-902b86ad805215eb.rlib" "/opt/crater/target/debug/deps/libredis-255a1e81964b21ad.rlib" "/opt/crater/target/debug/deps/liburl-ee604ccef16e6499.rlib" "/opt/crater/target/debug/deps/libpercent_encoding-b2b1eddedcc9d5cc.rlib" "/opt/crater/target/debug/deps/libidna-7075ca6261d9bac1.rlib" "/opt/crater/target/debug/deps/libunicode_normalization-b16029f4e9e6461c.rlib" "/opt/crater/target/debug/deps/libunicode_bidi-020a270ca49d2bee.rlib" "/opt/crater/target/debug/deps/libmatches-9f7ad04d44b47530.rlib" "/opt/crater/target/debug/deps/libsha1-19561cf7d08c449a.rlib" "/opt/crater/target/debug/deps/libitoa-fbd08118d5c2ed14.rlib" "/opt/crater/target/debug/deps/libdtoa-d00aefffc4eb47c6.rlib" "/opt/crater/target/debug/deps/libcombine-d48502e5e39eb934.rlib" "/opt/crater/target/debug/deps/libascii-2888df71552dc990.rlib" "/opt/crater/target/debug/deps/libunreachable-7dd4ced4819ef3ab.rlib" "/opt/crater/target/debug/deps/libvoid-4fb26e3b0cb57bde.rlib" "/opt/crater/target/debug/deps/libeither-8defd4767bf20ea6.rlib" "/opt/crater/target/debug/deps/librand-8b15411866abd9f1.rlib" "/opt/crater/target/debug/deps/librand_chacha-7ab0375c8e73b81e.rlib" "/opt/crater/target/debug/deps/libc2_chacha-f16892c13faa6da1.rlib" "/opt/crater/target/debug/deps/libppv_lite86-d642cb1e0049ec58.rlib" "/opt/crater/target/debug/deps/librand_core-b98b73c4d658421f.rlib" "/opt/crater/target/debug/deps/libgetrandom-4696f98276bb287c.rlib" "/opt/crater/target/debug/deps/libtokio-241773387278fbde.rlib" "/opt/crater/target/debug/deps/libtokio_uds-28aa52c0d2ecdc57.rlib" "/opt/crater/target/debug/deps/libmio_uds-b1d44c3a55c7b107.rlib" "/opt/crater/target/debug/deps/libtokio_udp-3493e22769a7645e.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c6e40c97d9def47d.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-5a21d8b587de7d90.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-dc2897a641e6f9f9.rlib" "/opt/crater/target/debug/deps/libtokio_sync-e9d8e5fe6c538a0e.rlib" "/opt/crater/target/debug/deps/libfnv-6e18f98be4338210.rlib" "/opt/crater/target/debug/deps/libparking_lot-6d6274efc8401f80.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-869ed462af3e9515.rlib" "/opt/crater/target/debug/deps/libsmallvec-7295b1a781bd56b7.rlib" "/opt/crater/target/debug/deps/liblock_api-fc146aa09c055915.rlib" "/opt/crater/target/debug/deps/libowning_ref-3fc2847bd21aa6e0.rlib" "/opt/crater/target/debug/deps/libstable_deref_trait-0255958156eadff4.rlib" "/opt/crater/target/debug/deps/libscopeguard-22a7afc64d55fe2c.rlib" "/opt/crater/target/debug/deps/libtokio_fs-e1502f8d9eae2cc9.rlib" "/opt/crater/target/debug/deps/libtokio_threadpool-b056b92c7aa26aea.rlib" "/opt/crater/target/debug/deps/librand-0a4630b57dcc57b3.rlib" "/opt/crater/target/debug/deps/librand_xorshift-aba648178ccafa60.rlib" "/opt/crater/target/debug/deps/librand_pcg-ed671db4fe3757e2.rlib" "/opt/crater/target/debug/deps/librand_hc-9a65771b9d152351.rlib" "/opt/crater/target/debug/deps/librand_chacha-1b9e58560472e74b.rlib" "/opt/crater/target/debug/deps/librand_isaac-3807d01c3a327700.rlib" "/opt/crater/target/debug/deps/librand_core-4eee27b20de9a341.rlib" "/opt/crater/target/debug/deps/librand_os-4634e01c13ceff4d.rlib" "/opt/crater/target/debug/deps/librand_jitter-a13c2857ac7f2734.rlib" "/opt/crater/target/debug/deps/librand_core-a5a514f3409fd81c.rlib" "/opt/crater/target/debug/deps/libcrossbeam_queue-2589c79105784e0d.rlib" "/opt/crater/target/debug/deps/libcrossbeam_deque-5a68c737302d997f.rlib" "/opt/crater/target/debug/deps/libcrossbeam_epoch-8ce32638c5f827b5.rlib" "/opt/crater/target/debug/deps/libscopeguard-0bc963131f7c0d17.rlib" "/opt/crater/target/debug/deps/libmemoffset-d44318d335d18b97.rlib" "/opt/crater/target/debug/deps/libarrayvec-1cff3f0e2df954b3.rlib" "/opt/crater/target/debug/deps/libnodrop-7f98e5f8ec110eeb.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-747363cf0ed087f7.rlib" "/opt/crater/target/debug/deps/libtokio_executor-bdf861f407e5fa85.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-e32b73b6a212c837.rlib" "/opt/crater/target/debug/deps/libtokio_codec-f600767da57615b5.rlib" "/opt/crater/target/debug/deps/libtokio_io-cf9e939a0533315f.rlib" "/opt/crater/target/debug/deps/libnum_cpus-b569161181e0c021.rlib" "/opt/crater/target/debug/deps/libmio-abd445e00221b11c.rlib" "/opt/crater/target/debug/deps/libslab-9297145f06665f9b.rlib" "/opt/crater/target/debug/deps/libnet2-bb453ffc26c3f792.rlib" "/opt/crater/target/debug/deps/libbytes-ed85d24d60fcc292.rlib" "/opt/crater/target/debug/deps/libiovec-700e4a654a679356.rlib" "/opt/crater/target/debug/deps/libbyteorder-98f71e4258b709b0.rlib" "/opt/crater/target/debug/deps/libpretty_env_logger-276522a5e50373f8.rlib" "/opt/crater/target/debug/deps/libchrono-6d874ac3fbc64c03.rlib" "/opt/crater/target/debug/deps/libnum_integer-f48a816a5a5da78f.rlib" "/opt/crater/target/debug/deps/libnum_traits-81444709e4b8de32.rlib" "/opt/crater/target/debug/deps/libtime-c375bf02baafb2fd.rlib" "/opt/crater/target/debug/deps/libenv_logger-60ee7903c4014a8e.rlib" "/opt/crater/target/debug/deps/libregex-2f54045970e77773.rlib" "/opt/crater/target/debug/deps/libregex_syntax-bd99c61924ee7656.rlib" "/opt/crater/target/debug/deps/libthread_local-2ae771cec36f83c2.rlib" "/opt/crater/target/debug/deps/liblazy_static-1f7a4359e40a6da9.rlib" "/opt/crater/target/debug/deps/libaho_corasick-d762a0026dd53dbb.rlib" "/opt/crater/target/debug/deps/libmemchr-23e7689be8a12a36.rlib" "/opt/crater/target/debug/deps/libatty-22eb3b2ac1d714c2.rlib" "/opt/crater/target/debug/deps/liblibc-37f3d1c853b3b7bd.rlib" "/opt/crater/target/debug/deps/libhumantime-fe7582828726b442.rlib" "/opt/crater/target/debug/deps/libquick_error-f50ea951eae373ef.rlib" "/opt/crater/target/debug/deps/libtermcolor-79496754b4470ebc.rlib" "/opt/crater/target/debug/deps/liblog-6796845c78a3960b.rlib" "/opt/crater/target/debug/deps/libcfg_if-c978b2f886ff1de7.rlib" "/opt/crater/target/debug/deps/libfutures-f60afb80ba7dd5f9.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-1d6d86bd078a28e9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e9721e46a424e2a9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-c07193698f282147.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-6da45690f3863086.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-690797036dd27680.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-d3896ccbfd8eda2b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-7cccc3739e3d7623.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-5e9ba178a513cd29.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-5ca9f83bf63d1f4b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-bba1c7ef9e950882.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-e23c9de62012deb5.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-9b59dffdcd513d5d.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-17392340ab2e4a97.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-ac21508a81e3f7f3.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: final link failed: Cannot allocate memory [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [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/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.connect.brrxljia-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015" "/opt/crater/target/debug/examples/connect-fcf231c0f93b1015.1hxu15untptunsgu.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libreool-a4405e90363255af.rlib" "/opt/crater/target/debug/deps/libparking_lot-524102406aaa848b.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-7bbf7d1c69263905.rlib" "/opt/crater/target/debug/deps/liblock_api-902b86ad805215eb.rlib" "/opt/crater/target/debug/deps/libredis-255a1e81964b21ad.rlib" "/opt/crater/target/debug/deps/liburl-ee604ccef16e6499.rlib" "/opt/crater/target/debug/deps/libpercent_encoding-b2b1eddedcc9d5cc.rlib" "/opt/crater/target/debug/deps/libidna-7075ca6261d9bac1.rlib" "/opt/crater/target/debug/deps/libunicode_normalization-b16029f4e9e6461c.rlib" "/opt/crater/target/debug/deps/libunicode_bidi-020a270ca49d2bee.rlib" "/opt/crater/target/debug/deps/libmatches-9f7ad04d44b47530.rlib" "/opt/crater/target/debug/deps/libsha1-19561cf7d08c449a.rlib" "/opt/crater/target/debug/deps/libitoa-fbd08118d5c2ed14.rlib" "/opt/crater/target/debug/deps/libdtoa-d00aefffc4eb47c6.rlib" "/opt/crater/target/debug/deps/libcombine-d48502e5e39eb934.rlib" "/opt/crater/target/debug/deps/libascii-2888df71552dc990.rlib" "/opt/crater/target/debug/deps/libunreachable-7dd4ced4819ef3ab.rlib" "/opt/crater/target/debug/deps/libvoid-4fb26e3b0cb57bde.rlib" "/opt/crater/target/debug/deps/libeither-8defd4767bf20ea6.rlib" "/opt/crater/target/debug/deps/librand-8b15411866abd9f1.rlib" "/opt/crater/target/debug/deps/librand_chacha-7ab0375c8e73b81e.rlib" "/opt/crater/target/debug/deps/libc2_chacha-f16892c13faa6da1.rlib" "/opt/crater/target/debug/deps/libppv_lite86-d642cb1e0049ec58.rlib" "/opt/crater/target/debug/deps/librand_core-b98b73c4d658421f.rlib" "/opt/crater/target/debug/deps/libgetrandom-4696f98276bb287c.rlib" "/opt/crater/target/debug/deps/libtokio-241773387278fbde.rlib" "/opt/crater/target/debug/deps/libtokio_uds-28aa52c0d2ecdc57.rlib" "/opt/crater/target/debug/deps/libmio_uds-b1d44c3a55c7b107.rlib" "/opt/crater/target/debug/deps/libtokio_udp-3493e22769a7645e.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c6e40c97d9def47d.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-5a21d8b587de7d90.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-dc2897a641e6f9f9.rlib" "/opt/crater/target/debug/deps/libtokio_sync-e9d8e5fe6c538a0e.rlib" "/opt/crater/target/debug/deps/libfnv-6e18f98be4338210.rlib" "/opt/crater/target/debug/deps/libparking_lot-6d6274efc8401f80.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-869ed462af3e9515.rlib" "/opt/crater/target/debug/deps/libsmallvec-7295b1a781bd56b7.rlib" "/opt/crater/target/debug/deps/liblock_api-fc146aa09c055915.rlib" "/opt/crater/target/debug/deps/libowning_ref-3fc2847bd21aa6e0.rlib" "/opt/crater/target/debug/deps/libstable_deref_trait-0255958156eadff4.rlib" "/opt/crater/target/debug/deps/libscopeguard-22a7afc64d55fe2c.rlib" "/opt/crater/target/debug/deps/libtokio_fs-e1502f8d9eae2cc9.rlib" "/opt/crater/target/debug/deps/libtokio_threadpool-b056b92c7aa26aea.rlib" "/opt/crater/target/debug/deps/librand-0a4630b57dcc57b3.rlib" "/opt/crater/target/debug/deps/librand_xorshift-aba648178ccafa60.rlib" "/opt/crater/target/debug/deps/librand_pcg-ed671db4fe3757e2.rlib" "/opt/crater/target/debug/deps/librand_hc-9a65771b9d152351.rlib" "/opt/crater/target/debug/deps/librand_chacha-1b9e58560472e74b.rlib" "/opt/crater/target/debug/deps/librand_isaac-3807d01c3a327700.rlib" "/opt/crater/target/debug/deps/librand_core-4eee27b20de9a341.rlib" "/opt/crater/target/debug/deps/librand_os-4634e01c13ceff4d.rlib" "/opt/crater/target/debug/deps/librand_jitter-a13c2857ac7f2734.rlib" "/opt/crater/target/debug/deps/librand_core-a5a514f3409fd81c.rlib" "/opt/crater/target/debug/deps/libcrossbeam_queue-2589c79105784e0d.rlib" "/opt/crater/target/debug/deps/libcrossbeam_deque-5a68c737302d997f.rlib" "/opt/crater/target/debug/deps/libcrossbeam_epoch-8ce32638c5f827b5.rlib" "/opt/crater/target/debug/deps/libscopeguard-0bc963131f7c0d17.rlib" "/opt/crater/target/debug/deps/libmemoffset-d44318d335d18b97.rlib" "/opt/crater/target/debug/deps/libarrayvec-1cff3f0e2df954b3.rlib" "/opt/crater/target/debug/deps/libnodrop-7f98e5f8ec110eeb.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-747363cf0ed087f7.rlib" "/opt/crater/target/debug/deps/libtokio_executor-bdf861f407e5fa85.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-e32b73b6a212c837.rlib" "/opt/crater/target/debug/deps/libtokio_codec-f600767da57615b5.rlib" "/opt/crater/target/debug/deps/libtokio_io-cf9e939a0533315f.rlib" "/opt/crater/target/debug/deps/libnum_cpus-b569161181e0c021.rlib" "/opt/crater/target/debug/deps/libmio-abd445e00221b11c.rlib" "/opt/crater/target/debug/deps/libslab-9297145f06665f9b.rlib" "/opt/crater/target/debug/deps/libnet2-bb453ffc26c3f792.rlib" "/opt/crater/target/debug/deps/libbytes-ed85d24d60fcc292.rlib" "/opt/crater/target/debug/deps/libiovec-700e4a654a679356.rlib" "/opt/crater/target/debug/deps/libbyteorder-98f71e4258b709b0.rlib" "/opt/crater/target/debug/deps/libpretty_env_logger-276522a5e50373f8.rlib" "/opt/crater/target/debug/deps/libchrono-6d874ac3fbc64c03.rlib" "/opt/crater/target/debug/deps/libnum_integer-f48a816a5a5da78f.rlib" "/opt/crater/target/debug/deps/libnum_traits-81444709e4b8de32.rlib" "/opt/crater/target/debug/deps/libtime-c375bf02baafb2fd.rlib" "/opt/crater/target/debug/deps/libenv_logger-60ee7903c4014a8e.rlib" "/opt/crater/target/debug/deps/libregex-2f54045970e77773.rlib" "/opt/crater/target/debug/deps/libregex_syntax-bd99c61924ee7656.rlib" "/opt/crater/target/debug/deps/libthread_local-2ae771cec36f83c2.rlib" "/opt/crater/target/debug/deps/liblazy_static-1f7a4359e40a6da9.rlib" "/opt/crater/target/debug/deps/libaho_corasick-d762a0026dd53dbb.rlib" "/opt/crater/target/debug/deps/libmemchr-23e7689be8a12a36.rlib" "/opt/crater/target/debug/deps/libatty-22eb3b2ac1d714c2.rlib" "/opt/crater/target/debug/deps/liblibc-37f3d1c853b3b7bd.rlib" "/opt/crater/target/debug/deps/libhumantime-fe7582828726b442.rlib" "/opt/crater/target/debug/deps/libquick_error-f50ea951eae373ef.rlib" "/opt/crater/target/debug/deps/libtermcolor-79496754b4470ebc.rlib" "/opt/crater/target/debug/deps/liblog-6796845c78a3960b.rlib" "/opt/crater/target/debug/deps/libcfg_if-c978b2f886ff1de7.rlib" "/opt/crater/target/debug/deps/libfutures-f60afb80ba7dd5f9.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-1d6d86bd078a28e9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e9721e46a424e2a9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-c07193698f282147.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-6da45690f3863086.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-690797036dd27680.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-d3896ccbfd8eda2b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-7cccc3739e3d7623.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-5e9ba178a513cd29.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-5ca9f83bf63d1f4b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-bba1c7ef9e950882.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-e23c9de62012deb5.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-9b59dffdcd513d5d.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-17392340ab2e4a97.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-ac21508a81e3f7f3.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: : final link failed: 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: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `reool`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: Could not compile `reool`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: Could not compile `reool`. [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/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.0.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.1.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.10.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.11.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.12.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.13.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.14.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.15.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.2.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.3.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.4.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.5.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.6.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.7.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.8.rcgu.o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.reool.a94rmxny-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95" "/opt/crater/target/debug/deps/reool-e5d589ce0814dc95.1c6opdj9mulwaq1r.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-f0d86b2ef6410e4f.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libterm-28a84d78fba0104f.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-625008d0a6744ece.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-b85c11af396739da.rlib" "/opt/crater/target/debug/deps/libtokio-241773387278fbde.rlib" "/opt/crater/target/debug/deps/libtokio_udp-3493e22769a7645e.rlib" "/opt/crater/target/debug/deps/libtokio_fs-e1502f8d9eae2cc9.rlib" "/opt/crater/target/debug/deps/libtokio_threadpool-b056b92c7aa26aea.rlib" "/opt/crater/target/debug/deps/libcrossbeam_queue-2589c79105784e0d.rlib" "/opt/crater/target/debug/deps/libcrossbeam_deque-5a68c737302d997f.rlib" "/opt/crater/target/debug/deps/libcrossbeam_epoch-8ce32638c5f827b5.rlib" "/opt/crater/target/debug/deps/libmemoffset-d44318d335d18b97.rlib" "/opt/crater/target/debug/deps/libarrayvec-1cff3f0e2df954b3.rlib" "/opt/crater/target/debug/deps/libnodrop-7f98e5f8ec110eeb.rlib" "/opt/crater/target/debug/deps/libtokio_current_thread-747363cf0ed087f7.rlib" "/opt/crater/target/debug/deps/libpretty_env_logger-276522a5e50373f8.rlib" "/opt/crater/target/debug/deps/libchrono-6d874ac3fbc64c03.rlib" "/opt/crater/target/debug/deps/libnum_integer-f48a816a5a5da78f.rlib" "/opt/crater/target/debug/deps/libnum_traits-81444709e4b8de32.rlib" "/opt/crater/target/debug/deps/libtime-c375bf02baafb2fd.rlib" "/opt/crater/target/debug/deps/libenv_logger-60ee7903c4014a8e.rlib" "/opt/crater/target/debug/deps/libregex-2f54045970e77773.rlib" "/opt/crater/target/debug/deps/libregex_syntax-bd99c61924ee7656.rlib" "/opt/crater/target/debug/deps/libthread_local-2ae771cec36f83c2.rlib" "/opt/crater/target/debug/deps/libaho_corasick-d762a0026dd53dbb.rlib" "/opt/crater/target/debug/deps/libatty-22eb3b2ac1d714c2.rlib" "/opt/crater/target/debug/deps/libhumantime-fe7582828726b442.rlib" "/opt/crater/target/debug/deps/libquick_error-f50ea951eae373ef.rlib" "/opt/crater/target/debug/deps/libtermcolor-79496754b4470ebc.rlib" "/opt/crater/target/debug/deps/libtokio_timer-c6e40c97d9def47d.rlib" "/opt/crater/target/debug/deps/libparking_lot-524102406aaa848b.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-7bbf7d1c69263905.rlib" "/opt/crater/target/debug/deps/liblock_api-902b86ad805215eb.rlib" "/opt/crater/target/debug/deps/libscopeguard-0bc963131f7c0d17.rlib" "/opt/crater/target/debug/deps/libredis-255a1e81964b21ad.rlib" "/opt/crater/target/debug/deps/libtokio_uds-28aa52c0d2ecdc57.rlib" "/opt/crater/target/debug/deps/libmio_uds-b1d44c3a55c7b107.rlib" "/opt/crater/target/debug/deps/libtokio_tcp-5a21d8b587de7d90.rlib" "/opt/crater/target/debug/deps/libtokio_reactor-dc2897a641e6f9f9.rlib" "/opt/crater/target/debug/deps/libparking_lot-6d6274efc8401f80.rlib" "/opt/crater/target/debug/deps/libparking_lot_core-869ed462af3e9515.rlib" "/opt/crater/target/debug/deps/librand-0a4630b57dcc57b3.rlib" "/opt/crater/target/debug/deps/librand_xorshift-aba648178ccafa60.rlib" "/opt/crater/target/debug/deps/librand_pcg-ed671db4fe3757e2.rlib" "/opt/crater/target/debug/deps/librand_hc-9a65771b9d152351.rlib" "/opt/crater/target/debug/deps/librand_chacha-1b9e58560472e74b.rlib" "/opt/crater/target/debug/deps/librand_isaac-3807d01c3a327700.rlib" "/opt/crater/target/debug/deps/librand_core-4eee27b20de9a341.rlib" "/opt/crater/target/debug/deps/librand_os-4634e01c13ceff4d.rlib" "/opt/crater/target/debug/deps/librand_jitter-a13c2857ac7f2734.rlib" "/opt/crater/target/debug/deps/librand_core-a5a514f3409fd81c.rlib" "/opt/crater/target/debug/deps/liblock_api-fc146aa09c055915.rlib" "/opt/crater/target/debug/deps/libowning_ref-3fc2847bd21aa6e0.rlib" "/opt/crater/target/debug/deps/libstable_deref_trait-0255958156eadff4.rlib" "/opt/crater/target/debug/deps/libscopeguard-22a7afc64d55fe2c.rlib" "/opt/crater/target/debug/deps/libnum_cpus-b569161181e0c021.rlib" "/opt/crater/target/debug/deps/libmio-abd445e00221b11c.rlib" "/opt/crater/target/debug/deps/libslab-9297145f06665f9b.rlib" "/opt/crater/target/debug/deps/libnet2-bb453ffc26c3f792.rlib" "/opt/crater/target/debug/deps/libtokio_sync-e9d8e5fe6c538a0e.rlib" "/opt/crater/target/debug/deps/libfnv-6e18f98be4338210.rlib" "/opt/crater/target/debug/deps/libtokio_codec-f600767da57615b5.rlib" "/opt/crater/target/debug/deps/libtokio_io-cf9e939a0533315f.rlib" "/opt/crater/target/debug/deps/liblog-6796845c78a3960b.rlib" "/opt/crater/target/debug/deps/libtokio_executor-bdf861f407e5fa85.rlib" "/opt/crater/target/debug/deps/libcrossbeam_utils-e32b73b6a212c837.rlib" "/opt/crater/target/debug/deps/liburl-ee604ccef16e6499.rlib" "/opt/crater/target/debug/deps/libpercent_encoding-b2b1eddedcc9d5cc.rlib" "/opt/crater/target/debug/deps/libidna-7075ca6261d9bac1.rlib" "/opt/crater/target/debug/deps/libunicode_normalization-b16029f4e9e6461c.rlib" "/opt/crater/target/debug/deps/libsmallvec-7295b1a781bd56b7.rlib" "/opt/crater/target/debug/deps/libunicode_bidi-020a270ca49d2bee.rlib" "/opt/crater/target/debug/deps/libmatches-9f7ad04d44b47530.rlib" "/opt/crater/target/debug/deps/libsha1-19561cf7d08c449a.rlib" "/opt/crater/target/debug/deps/libitoa-fbd08118d5c2ed14.rlib" "/opt/crater/target/debug/deps/libdtoa-d00aefffc4eb47c6.rlib" "/opt/crater/target/debug/deps/libbytes-ed85d24d60fcc292.rlib" "/opt/crater/target/debug/deps/libiovec-700e4a654a679356.rlib" "/opt/crater/target/debug/deps/libcombine-d48502e5e39eb934.rlib" "/opt/crater/target/debug/deps/libascii-2888df71552dc990.rlib" "/opt/crater/target/debug/deps/libunreachable-7dd4ced4819ef3ab.rlib" "/opt/crater/target/debug/deps/libvoid-4fb26e3b0cb57bde.rlib" "/opt/crater/target/debug/deps/libmemchr-23e7689be8a12a36.rlib" "/opt/crater/target/debug/deps/libeither-8defd4767bf20ea6.rlib" "/opt/crater/target/debug/deps/libbyteorder-98f71e4258b709b0.rlib" "/opt/crater/target/debug/deps/librand-8b15411866abd9f1.rlib" "/opt/crater/target/debug/deps/librand_chacha-7ab0375c8e73b81e.rlib" "/opt/crater/target/debug/deps/libc2_chacha-f16892c13faa6da1.rlib" "/opt/crater/target/debug/deps/libppv_lite86-d642cb1e0049ec58.rlib" "/opt/crater/target/debug/deps/liblazy_static-1f7a4359e40a6da9.rlib" "/opt/crater/target/debug/deps/librand_core-b98b73c4d658421f.rlib" "/opt/crater/target/debug/deps/libgetrandom-4696f98276bb287c.rlib" "/opt/crater/target/debug/deps/liblibc-37f3d1c853b3b7bd.rlib" "/opt/crater/target/debug/deps/libcfg_if-c978b2f886ff1de7.rlib" "/opt/crater/target/debug/deps/libfutures-f60afb80ba7dd5f9.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-1d6d86bd078a28e9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e9721e46a424e2a9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-c07193698f282147.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-6da45690f3863086.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-690797036dd27680.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-d3896ccbfd8eda2b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-7cccc3739e3d7623.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-5e9ba178a513cd29.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-5ca9f83bf63d1f4b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-bba1c7ef9e950882.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-e23c9de62012deb5.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-9b59dffdcd513d5d.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-17392340ab2e4a97.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-ac21508a81e3f7f3.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `reool`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "eaaee566a2bf4ccc66a6f15d2695bd324c874487719dfb82b655291fea01860e"` [INFO] running `"docker" "rm" "-f" "eaaee566a2bf4ccc66a6f15d2695bd324c874487719dfb82b655291fea01860e"` [INFO] [stdout] eaaee566a2bf4ccc66a6f15d2695bd324c874487719dfb82b655291fea01860e