[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 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-1/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/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" "+1.37.0" "build" "--frozen"` [INFO] [stdout] 3695466699a3eb4bd7851cabb7fa02208ba345e6843f5483d3adf19b8ef26b43 [INFO] running `"docker" "start" "-a" "3695466699a3eb4bd7851cabb7fa02208ba345e6843f5483d3adf19b8ef26b43"` [INFO] [stderr] Compiling memchr v0.1.11 [INFO] [stderr] Compiling minilzo-sys v0.1.0 [INFO] [stderr] Compiling term_size v0.2.1 [INFO] [stderr] Compiling thread-id v2.0.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: 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/1.37.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.0.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.1.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.10.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.11.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.12.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.13.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.14.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.15.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.2.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.3.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.4.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.5.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.6.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.7.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.8.rcgu.o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.distcc_finder.4m0wm7eb-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2" "/opt/crater/target/debug/deps/distcc_finder-2813f462be5863f2.3ldc626x4p6u353b.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-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/liblazy_static-287e3c5731c128ca.rlib" "/opt/crater/target/debug/deps/libclap-8f6d8403e927bcbf.rlib" "/opt/crater/target/debug/deps/libunicode_segmentation-03cae7d90269f722.rlib" "/opt/crater/target/debug/deps/libterm_size-35939cd5b694fee9.rlib" "/opt/crater/target/debug/deps/libvec_map-0b8971ea3fda61c2.rlib" "/opt/crater/target/debug/deps/libbitflags-05fa20c47058c1db.rlib" "/opt/crater/target/debug/deps/libunicode_width-8e49fc9eb4c9dbb0.rlib" "/opt/crater/target/debug/deps/libansi_term-5ad2ac4f1272cbf6.rlib" "/opt/crater/target/debug/deps/libstrsim-25c4e5da740a9e30.rlib" "/opt/crater/target/debug/deps/libminilzo-71752c1148114941.rlib" "/opt/crater/target/debug/deps/libminilzo_sys-fffeedbc33baa0f9.rlib" "/opt/crater/target/debug/deps/libenv_logger-70789bd29fbea0c2.rlib" "/opt/crater/target/debug/deps/libregex-b004abd496fa2342.rlib" "/opt/crater/target/debug/deps/libutf8_ranges-7e19cf98379531b4.rlib" "/opt/crater/target/debug/deps/libregex_syntax-55ee28c5615612af.rlib" "/opt/crater/target/debug/deps/libthread_local-a0bc81d12e822281.rlib" "/opt/crater/target/debug/deps/libthread_id-7375eb81856f7dbf.rlib" "/opt/crater/target/debug/deps/libaho_corasick-ab203fbe2a7e8e20.rlib" "/opt/crater/target/debug/deps/libmemchr-1487a38aac9602f7.rlib" "/opt/crater/target/debug/deps/liblibc-2533be16421c0e5d.rlib" "/opt/crater/target/debug/deps/liblog-cde2563351553608.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" "-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" "3695466699a3eb4bd7851cabb7fa02208ba345e6843f5483d3adf19b8ef26b43"` [INFO] running `"docker" "rm" "-f" "3695466699a3eb4bd7851cabb7fa02208ba345e6843f5483d3adf19b8ef26b43"` [INFO] [stdout] 3695466699a3eb4bd7851cabb7fa02208ba345e6843f5483d3adf19b8ef26b43