[INFO] updating cached repository sbwtw/distcc_scan [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/sbwtw/distcc_scan [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/sbwtw/distcc_scan" "work/ex/beta-1.38-1/sources/1.37.0/gh/sbwtw/distcc_scan"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/1.37.0/gh/sbwtw/distcc_scan'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/sbwtw/distcc_scan" "work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/sbwtw/distcc_scan"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/sbwtw/distcc_scan'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 998e84e6b56fdc10962bb29424eb65522635be97 [INFO] sha for GitHub repo sbwtw/distcc_scan: 998e84e6b56fdc10962bb29424eb65522635be97 [INFO] validating manifest of sbwtw/distcc_scan 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 sbwtw/distcc_scan 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 sbwtw/distcc_scan [INFO] finished frobbing sbwtw/distcc_scan [INFO] frobbed toml for sbwtw/distcc_scan written to work/ex/beta-1.38-1/sources/1.37.0/gh/sbwtw/distcc_scan/Cargo.toml [INFO] started frobbing sbwtw/distcc_scan [INFO] finished frobbing sbwtw/distcc_scan [INFO] frobbed toml for sbwtw/distcc_scan written to work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/sbwtw/distcc_scan/Cargo.toml [INFO] crate sbwtw/distcc_scan already has a lockfile, it will not be regenerated [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 sbwtw/distcc_scan 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-4/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/sbwtw/distcc_scan:/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] eca6d8081ffb0bf69bbcab596e60004e5808357b22af222633577a96f60849d7 [INFO] running `"docker" "start" "-a" "eca6d8081ffb0bf69bbcab596e60004e5808357b22af222633577a96f60849d7"` [INFO] [stderr] Compiling libc v0.2.19 [INFO] [stderr] Compiling unicode-segmentation v0.1.3 [INFO] [stderr] Compiling memchr v0.1.11 [INFO] [stderr] Compiling thread-id v2.0.0 [INFO] [stderr] Compiling term_size v0.2.1 [INFO] [stderr] Compiling minilzo-sys v0.1.0 [INFO] [stderr] Compiling clap v2.19.3 [INFO] [stderr] Compiling thread_local v0.2.7 [INFO] [stderr] Compiling minilzo v0.1.0 [INFO] [stderr] Compiling aho-corasick v0.5.3 [INFO] [stderr] Compiling regex v0.1.80 [INFO] [stderr] Compiling env_logger v0.3.5 [INFO] [stderr] Compiling distcc_finder v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:154:18 [INFO] [stderr] | [INFO] [stderr] 154 | c @ 0...9 => r.insert(0, (b'0' + c) as char), [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: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:155:19 [INFO] [stderr] | [INFO] [stderr] 155 | c @ 10...15 => r.insert(0, (b'a' + c - 10) as char), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:178:17 [INFO] [stderr] | [INFO] [stderr] 178 | n @ &b'0'...b'9' => (n - b'0') as usize, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `..=` for an inclusive range: `&(b'0'..=b'9')` [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:179:17 [INFO] [stderr] | [INFO] [stderr] 179 | n @ &b'a'...b'f' => (n - b'a') as usize + 10, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `..=` for an inclusive range: `&(b'a'..=b'f')` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/main.rs:19:1 [INFO] [stderr] | [INFO] [stderr] 19 | / lazy_static!{ [INFO] [stderr] 20 | | static ref TEST_PACKAGE: Vec = { [INFO] [stderr] 21 | | let head = b"DIST00000002ARGC00000005ARGV00000003g++ARGV00000002-cARGV00000002-oARGV00000001aARGV000000051.cppDOTI"; [INFO] [stderr] 22 | | let data = b"\n int b(){ int a=0; return a;} \n\n int c () { int aaa=0; return aaa;} /* aaa aa aa aa */"; [INFO] [stderr] ... | [INFO] [stderr] 32 | | }; [INFO] [stderr] 33 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/main.rs:19:1 [INFO] [stderr] | [INFO] [stderr] 19 | / lazy_static!{ [INFO] [stderr] 20 | | static ref TEST_PACKAGE: Vec = { [INFO] [stderr] 21 | | let head = b"DIST00000002ARGC00000005ARGV00000003g++ARGV00000002-cARGV00000002-oARGV00000001aARGV000000051.cppDOTI"; [INFO] [stderr] 22 | | let data = b"\n int b(){ int a=0; return a;} \n\n int c () { int aaa=0; return aaa;} /* aaa aa aa aa */"; [INFO] [stderr] ... | [INFO] [stderr] 32 | | }; [INFO] [stderr] 33 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: field is never used: `version` [INFO] [stderr] --> src/main.rs:56:5 [INFO] [stderr] | [INFO] [stderr] 56 | version: usize, [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant is never constructed: `Content` [INFO] [stderr] --> src/main.rs:66:5 [INFO] [stderr] | [INFO] [stderr] 66 | Content, [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/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.0.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.1.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.10.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.11.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.12.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.13.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.14.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.15.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.2.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.3.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.4.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.5.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.6.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.7.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.8.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.distcc_finder.ecmlqxz6-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48" "/opt/crater/target/debug/deps/distcc_finder-9b3eba1350681d48.1syrv24856si3pk7.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/liblazy_static-5b3a6350224c4bac.rlib" "/opt/crater/target/debug/deps/libclap-81787d3beede759c.rlib" "/opt/crater/target/debug/deps/libunicode_segmentation-bafce28bce92cb4a.rlib" "/opt/crater/target/debug/deps/libterm_size-bf12f3075d37e61a.rlib" "/opt/crater/target/debug/deps/libvec_map-4bfc68e930684ad8.rlib" "/opt/crater/target/debug/deps/libbitflags-b03ee8d07369378c.rlib" "/opt/crater/target/debug/deps/libunicode_width-a2596a57a5d82eb6.rlib" "/opt/crater/target/debug/deps/libansi_term-96a43f38fb74107f.rlib" "/opt/crater/target/debug/deps/libstrsim-4ec6f9fa4bef3e43.rlib" "/opt/crater/target/debug/deps/libminilzo-433a0572c5e82211.rlib" "/opt/crater/target/debug/deps/libminilzo_sys-ca95222152bb4b7b.rlib" "/opt/crater/target/debug/deps/libenv_logger-0e1201d6cdd0f562.rlib" "/opt/crater/target/debug/deps/libregex-9ef92f088b26e248.rlib" "/opt/crater/target/debug/deps/libutf8_ranges-f03f24c2204694fb.rlib" "/opt/crater/target/debug/deps/libregex_syntax-e4e7cc24efed9736.rlib" "/opt/crater/target/debug/deps/libthread_local-edd284328d638661.rlib" "/opt/crater/target/debug/deps/libthread_id-d6d5498f8344a871.rlib" "/opt/crater/target/debug/deps/libaho_corasick-e29e25c326e03c52.rlib" "/opt/crater/target/debug/deps/libmemchr-dcfffeae0db035b6.rlib" "/opt/crater/target/debug/deps/liblibc-51eb378bf85f9622.rlib" "/opt/crater/target/debug/deps/liblog-f86f92691b4ababd.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" "-llzo2" "-llzo2" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: cannot find -llzo2 [INFO] [stderr] /usr/bin/ld: cannot find -llzo2 [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 `distcc_finder`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "eca6d8081ffb0bf69bbcab596e60004e5808357b22af222633577a96f60849d7"` [INFO] running `"docker" "rm" "-f" "eca6d8081ffb0bf69bbcab596e60004e5808357b22af222633577a96f60849d7"` [INFO] [stdout] eca6d8081ffb0bf69bbcab596e60004e5808357b22af222633577a96f60849d7