[INFO] updating cached repository yggie/mach [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/yggie/mach [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/yggie/mach" "work/ex/pr-57967/sources/master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54/gh/yggie/mach"` [INFO] [stderr] Cloning into 'work/ex/pr-57967/sources/master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54/gh/yggie/mach'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/yggie/mach" "work/ex/pr-57967/sources/try#7fea0229842e79db1159ea58ad9a653b288efee9/gh/yggie/mach"` [INFO] [stderr] Cloning into 'work/ex/pr-57967/sources/try#7fea0229842e79db1159ea58ad9a653b288efee9/gh/yggie/mach'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] b1c15026e0f31117d0d54ee6eeaeadd3e94a3d92 [INFO] sha for GitHub repo yggie/mach: b1c15026e0f31117d0d54ee6eeaeadd3e94a3d92 [INFO] validating manifest of yggie/mach on toolchain master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of yggie/mach on toolchain try#7fea0229842e79db1159ea58ad9a653b288efee9 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+7fea0229842e79db1159ea58ad9a653b288efee9-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing yggie/mach [INFO] finished frobbing yggie/mach [INFO] frobbed toml for yggie/mach written to work/ex/pr-57967/sources/master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54/gh/yggie/mach/Cargo.toml [INFO] started frobbing yggie/mach [INFO] finished frobbing yggie/mach [INFO] frobbed toml for yggie/mach written to work/ex/pr-57967/sources/try#7fea0229842e79db1159ea58ad9a653b288efee9/gh/yggie/mach/Cargo.toml [INFO] crate yggie/mach has a lockfile. skipping [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+7fea0229842e79db1159ea58ad9a653b288efee9-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing yggie/mach against master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54 for pr-57967 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/pr-57967/worker-4/master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/pr-57967/sources/master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54/gh/yggie/mach:/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=forbid" "-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" "+c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt" "build" "--frozen"` [INFO] [stdout] 83e18b10545d4954a4cb2b05c009f49457233689a53f84d252c36e0f6ca7ab00 [INFO] running `"docker" "start" "-a" "83e18b10545d4954a4cb2b05c009f49457233689a53f84d252c36e0f6ca7ab00"` [INFO] [stderr] Compiling mach v0.0.1 (/opt/crater/workdir) [INFO] [stderr] warning: unused import: `Vec3D` [INFO] [stderr] --> src/collisions/detection/gjkepa/gjk.rs:2:29 [INFO] [stderr] | [INFO] [stderr] 2 | use maths::{Approximations, Vec3D}; [INFO] [stderr] | ^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `sphere` [INFO] [stderr] --> src/collisions/shapes/convex_shapes/intersections/ray_sphere_intersection.rs:8:28 [INFO] [stderr] | [INFO] [stderr] 8 | fn intersection(&self, sphere: &Sphere) -> Option { [INFO] [stderr] | ^^^^^^ help: consider prefixing with an underscore: `_sphere` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_variables)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `ray` [INFO] [stderr] --> src/collisions/broadphase/brute_force_broadphase.rs:97:31 [INFO] [stderr] | [INFO] [stderr] 97 | fn cast_ray<'a>(&'a self, ray: &Ray) -> Box> + 'a> { [INFO] [stderr] | ^^^ help: consider prefixing with an underscore: `_ray` [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 5.75s [INFO] running `"docker" "inspect" "83e18b10545d4954a4cb2b05c009f49457233689a53f84d252c36e0f6ca7ab00"` [INFO] running `"docker" "rm" "-f" "83e18b10545d4954a4cb2b05c009f49457233689a53f84d252c36e0f6ca7ab00"` [INFO] [stdout] 83e18b10545d4954a4cb2b05c009f49457233689a53f84d252c36e0f6ca7ab00 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/pr-57967/worker-4/master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/pr-57967/sources/master#c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54/gh/yggie/mach:/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=forbid" "-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" "+c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt" "test" "--frozen" "--no-run"` [INFO] [stdout] b6cd3859d67e35496bcbabada9cdd323d344e32b34deb541883d9bdd03f390cf [INFO] running `"docker" "start" "-a" "b6cd3859d67e35496bcbabada9cdd323d344e32b34deb541883d9bdd03f390cf"` [INFO] [stderr] Compiling phf_shared v0.7.20 [INFO] [stderr] Compiling dtoa v0.2.2 [INFO] [stderr] Compiling num-traits v0.1.36 [INFO] [stderr] Compiling serde v0.8.21 [INFO] [stderr] Compiling itoa v0.1.1 [INFO] [stderr] Compiling semver v0.1.20 [INFO] [stderr] Compiling lazy_static v0.2.2 [INFO] [stderr] Compiling gcc v0.3.41 [INFO] [stderr] Compiling khronos_api v1.0.0 [INFO] [stderr] Compiling log v0.3.6 [INFO] [stderr] Compiling rustc-serialize v0.3.22 [INFO] [stderr] Compiling crossbeam v0.2.10 [INFO] [stderr] Compiling byteorder v0.5.3 [INFO] [stderr] Compiling cfg-if v0.1.0 [INFO] [stderr] Compiling rustc-demangle v0.1.3 [INFO] [stderr] Compiling smallvec v0.1.8 [INFO] [stderr] Compiling rand v0.3.15 [INFO] [stderr] Compiling memchr v0.1.11 [INFO] [stderr] Compiling xml-rs v0.3.5 [INFO] [stderr] Compiling shared_library v0.1.5 [INFO] [stderr] Compiling phf v0.7.20 [INFO] [stderr] Compiling x11-dl v2.12.0 [INFO] [stderr] Compiling rustc_version v0.1.7 [INFO] [stderr] Compiling num-integer v0.1.32 [INFO] [stderr] Compiling backtrace-sys v0.1.5 [INFO] [stderr] Compiling aho-corasick v0.5.3 [INFO] [stderr] Compiling osmesa-sys v0.1.2 [INFO] [stderr] Compiling num-iter v0.1.32 [INFO] [stderr] Compiling tempfile v2.1.4 [INFO] [stderr] Compiling thread-id v2.0.0 [INFO] [stderr] Compiling fs2 v0.2.5 [INFO] [stderr] Compiling time v0.1.35 [INFO] [stderr] Compiling phf_generator v0.7.20 [INFO] [stderr] Compiling thread_local v0.2.7 [INFO] [stderr] Compiling wayland-scanner v0.5.11 [INFO] [stderr] Compiling gl_generator v0.5.2 [INFO] [stderr] Compiling backtrace v0.2.3 [INFO] [stderr] Compiling phf_codegen v0.7.20 [INFO] [stderr] Compiling memmap v0.2.3 [INFO] [stderr] Compiling regex v0.1.80 [INFO] [stderr] Compiling target_build_utils v0.1.2 [INFO] [stderr] Compiling wayland-client v0.5.12 [INFO] [stderr] Compiling serde_json v0.8.4 [INFO] [stderr] Compiling glutin v0.6.2 [INFO] [stderr] Compiling glium v0.15.0 [INFO] [stderr] Compiling num-bigint v0.1.35 [INFO] [stderr] Compiling num-complex v0.1.35 [INFO] [stderr] Compiling num-rational v0.1.35 [INFO] [stderr] Compiling num v0.1.36 [INFO] [stderr] Compiling nalgebra v0.10.1 [INFO] [stderr] Compiling env_logger v0.3.5 [INFO] [stderr] Compiling quickcheck v0.4.1 [INFO] [stderr] Compiling libloading v0.3.1 [INFO] [stderr] Compiling dlib v0.3.1 [INFO] [stderr] Compiling wayland-sys v0.5.11 [INFO] [stderr] Compiling wayland-window v0.2.3 [INFO] [stderr] Compiling wayland-kbd v0.3.6 [INFO] [stderr] Compiling mach v0.0.1 (/opt/crater/workdir) [INFO] [stderr] warning: unused import: `CollisionObjectSpace` [INFO] [stderr] --> examples/ray_tracing_demo.rs:8:12 [INFO] [stderr] | [INFO] [stderr] 8 | use mach::{CollisionObjectSpace, DynamicBody, MachWorld, UnitVec3D, Vec3D, World}; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused macro definition [INFO] [stderr] --> src/./../tests/support/assert_properties_for_actions.rs:3:1 [INFO] [stderr] | [INFO] [stderr] 3 | / macro_rules! assert_properties { [INFO] [stderr] 4 | | (target: $target:expr, actions: $actions:expr, properties: $properties:expr,) => { [INFO] [stderr] 5 | | assert_properties_for_actions($target, $actions, $properties); [INFO] [stderr] 6 | | }; [INFO] [stderr] 7 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_macros)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `Vec3D` [INFO] [stderr] --> src/collisions/detection/gjkepa/gjk.rs:2:29 [INFO] [stderr] | [INFO] [stderr] 2 | use maths::{Approximations, Vec3D}; [INFO] [stderr] | ^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: field is never used: `color` [INFO] [stderr] --> examples/raytracing/point_light.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | color: Color, [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(dead_code)] on by default [INFO] [stderr] [INFO] [stderr] warning: field is never used: `position` [INFO] [stderr] --> examples/raytracing/point_light.rs:7:5 [INFO] [stderr] | [INFO] [stderr] 7 | position: Vec3D, [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never used: `color` [INFO] [stderr] --> examples/raytracing/directional_light.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | color: Color, [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never used: `direction` [INFO] [stderr] --> examples/raytracing/directional_light.rs:7:5 [INFO] [stderr] | [INFO] [stderr] 7 | direction: UnitVec3D, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never used: `point_lights` [INFO] [stderr] --> examples/ray_tracing_demo.rs:19:5 [INFO] [stderr] | [INFO] [stderr] 19 | point_lights: Vec, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never used: `max_ray_bounces` [INFO] [stderr] --> examples/ray_tracing_demo.rs:20:5 [INFO] [stderr] | [INFO] [stderr] 20 | max_ray_bounces: usize, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never used: `directional_lights` [INFO] [stderr] --> examples/ray_tracing_demo.rs:21:5 [INFO] [stderr] | [INFO] [stderr] 21 | directional_lights: Vec, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `sphere` [INFO] [stderr] --> src/collisions/shapes/convex_shapes/intersections/ray_sphere_intersection.rs:8:28 [INFO] [stderr] | [INFO] [stderr] 8 | fn intersection(&self, sphere: &Sphere) -> Option { [INFO] [stderr] | ^^^^^^ help: consider prefixing with an underscore: `_sphere` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_variables)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `ray` [INFO] [stderr] --> src/collisions/broadphase/brute_force_broadphase.rs:97:31 [INFO] [stderr] | [INFO] [stderr] 97 | fn cast_ray<'a>(&'a self, ray: &Ray) -> Box> + 'a> { [INFO] [stderr] | ^^^ help: consider prefixing with an underscore: `_ray` [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/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.dropped_cube.l6p157wq-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9" "/opt/crater/target/debug/examples/dropped_cube-c927bbf4a6226ef9.4256nksrtgkve6ib.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libtime-c02608636b985800.rlib" "/opt/crater/target/debug/deps/libnalgebra-723fdb81de669512.rlib" "/opt/crater/target/debug/deps/libnum-c366eb271fea9631.rlib" "/opt/crater/target/debug/deps/libnum_rational-2e0273a68ef12c75.rlib" "/opt/crater/target/debug/deps/libnum_bigint-ef5d4cf3746fb640.rlib" "/opt/crater/target/debug/deps/libnum_complex-109462234b92fa8f.rlib" "/opt/crater/target/debug/deps/libnum_iter-2184a3e5c79aebad.rlib" "/opt/crater/target/debug/deps/libnum_integer-006789bef05da2bf.rlib" "/opt/crater/target/debug/deps/libnum_traits-7af8442081a08a2a.rlib" "/opt/crater/target/debug/deps/librustc_serialize-746afecadf994b7c.rlib" "/opt/crater/target/debug/deps/libglium-4f9fc9da285d600d.rlib" "/opt/crater/target/debug/deps/libglutin-10cfd975a52e47a0.rlib" "/opt/crater/target/debug/deps/libwayland_window-f89d87040845107a.rlib" "/opt/crater/target/debug/deps/libtempfile-75154b1c62f49156.rlib" "/opt/crater/target/debug/deps/librand-25c25302f11e0dea.rlib" "/opt/crater/target/debug/deps/libbyteorder-f73e38a3da06a0ba.rlib" "/opt/crater/target/debug/deps/libwayland_kbd-46afdad9628dba57.rlib" "/opt/crater/target/debug/deps/libmemmap-17f6c6bb07b05b10.rlib" "/opt/crater/target/debug/deps/libosmesa_sys-9f7d18de51f3c3df.rlib" "/opt/crater/target/debug/deps/libwayland_client-de265238666c056e.rlib" "/opt/crater/target/debug/deps/libwayland_sys-6ada63629a156fea.rlib" "/opt/crater/target/debug/deps/liblazy_static-17a1dfe8df737fe1.rlib" "/opt/crater/target/debug/deps/libdlib-485e97652b7acd79.rlib" "/opt/crater/target/debug/deps/liblibloading-d1640d0f95d8df41.rlib" "/opt/crater/target/debug/deps/libcrossbeam-c61a9b0f27a2d7f4.rlib" "/opt/crater/target/debug/deps/libbitflags-a08c32e0d1827ba5.rlib" "/opt/crater/target/debug/deps/libx11_dl-4630a3720da4586b.rlib" "/opt/crater/target/debug/deps/libshared_library-6be27fb0e7eb7012.rlib" "/opt/crater/target/debug/deps/libsmallvec-6223ca88d0870ac5.rlib" "/opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib" "/opt/crater/target/debug/deps/libbacktrace_sys-d088574941fbec78.rlib" "/opt/crater/target/debug/deps/librustc_demangle-bedd9530c131cc28.rlib" "/opt/crater/target/debug/deps/libcfg_if-093b3a73669c0adf.rlib" "/opt/crater/target/debug/deps/libdbghelp-b3513b10232833cd.rlib" "/opt/crater/target/debug/deps/libwinapi-7dff080b6462bfe0.rlib" "/opt/crater/target/debug/deps/libkernel32-9b717afd956943fe.rlib" "/opt/crater/target/debug/deps/liblibc-7f3cd8e33873d9dc.rlib" "/opt/crater/target/debug/deps/liblazy_static-126057301ec7e4c8.rlib" "/opt/crater/target/debug/deps/libmach-1a573f836e40cd36.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-8469d768695d9748.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-786c0f406992159b.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-eda54ffd3e6402cc.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-3b59adbc83c396a4.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-1d2bb09f4dcbd4be.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-e96acda46b77a2fd.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-596074f575b1f832.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-57f280c1596673cd.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-16132b5b2ecf9ec1.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-37286a0a9c4289ff.rlib" "-Wl,-Bdynamic" "-ldl" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib(backtrace-f8bcb4cb750f9c9d.backtrace.8na41fud-cgu.12.rcgu.o): In function `backtrace::symbolize::libbacktrace::init_state::{{closure}}': [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:150: undefined reference to `backtrace_create_state' [INFO] [stderr] /opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib(backtrace-f8bcb4cb750f9c9d.backtrace.8na41fud-cgu.12.rcgu.o): In function `backtrace::symbolize::libbacktrace::resolve': [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:167: undefined reference to `backtrace_pcinfo' [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:171: undefined reference to `backtrace_syminfo' [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 `mach`. [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/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.two_colliding_cubes.24wcpj4m-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28" "/opt/crater/target/debug/examples/two_colliding_cubes-d427b21b68a07e28.23ni9m2snvlj80yp.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libtime-c02608636b985800.rlib" "/opt/crater/target/debug/deps/libnalgebra-723fdb81de669512.rlib" "/opt/crater/target/debug/deps/libnum-c366eb271fea9631.rlib" "/opt/crater/target/debug/deps/libnum_rational-2e0273a68ef12c75.rlib" "/opt/crater/target/debug/deps/libnum_bigint-ef5d4cf3746fb640.rlib" "/opt/crater/target/debug/deps/libnum_complex-109462234b92fa8f.rlib" "/opt/crater/target/debug/deps/libnum_iter-2184a3e5c79aebad.rlib" "/opt/crater/target/debug/deps/libnum_integer-006789bef05da2bf.rlib" "/opt/crater/target/debug/deps/libnum_traits-7af8442081a08a2a.rlib" "/opt/crater/target/debug/deps/librustc_serialize-746afecadf994b7c.rlib" "/opt/crater/target/debug/deps/libglium-4f9fc9da285d600d.rlib" "/opt/crater/target/debug/deps/libglutin-10cfd975a52e47a0.rlib" "/opt/crater/target/debug/deps/libwayland_window-f89d87040845107a.rlib" "/opt/crater/target/debug/deps/libtempfile-75154b1c62f49156.rlib" "/opt/crater/target/debug/deps/librand-25c25302f11e0dea.rlib" "/opt/crater/target/debug/deps/libbyteorder-f73e38a3da06a0ba.rlib" "/opt/crater/target/debug/deps/libwayland_kbd-46afdad9628dba57.rlib" "/opt/crater/target/debug/deps/libmemmap-17f6c6bb07b05b10.rlib" "/opt/crater/target/debug/deps/libosmesa_sys-9f7d18de51f3c3df.rlib" "/opt/crater/target/debug/deps/libwayland_client-de265238666c056e.rlib" "/opt/crater/target/debug/deps/libwayland_sys-6ada63629a156fea.rlib" "/opt/crater/target/debug/deps/liblazy_static-17a1dfe8df737fe1.rlib" "/opt/crater/target/debug/deps/libdlib-485e97652b7acd79.rlib" "/opt/crater/target/debug/deps/liblibloading-d1640d0f95d8df41.rlib" "/opt/crater/target/debug/deps/libcrossbeam-c61a9b0f27a2d7f4.rlib" "/opt/crater/target/debug/deps/libbitflags-a08c32e0d1827ba5.rlib" "/opt/crater/target/debug/deps/libx11_dl-4630a3720da4586b.rlib" "/opt/crater/target/debug/deps/libshared_library-6be27fb0e7eb7012.rlib" "/opt/crater/target/debug/deps/libsmallvec-6223ca88d0870ac5.rlib" "/opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib" "/opt/crater/target/debug/deps/libbacktrace_sys-d088574941fbec78.rlib" "/opt/crater/target/debug/deps/librustc_demangle-bedd9530c131cc28.rlib" "/opt/crater/target/debug/deps/libcfg_if-093b3a73669c0adf.rlib" "/opt/crater/target/debug/deps/libdbghelp-b3513b10232833cd.rlib" "/opt/crater/target/debug/deps/libwinapi-7dff080b6462bfe0.rlib" "/opt/crater/target/debug/deps/libkernel32-9b717afd956943fe.rlib" "/opt/crater/target/debug/deps/liblibc-7f3cd8e33873d9dc.rlib" "/opt/crater/target/debug/deps/liblazy_static-126057301ec7e4c8.rlib" "/opt/crater/target/debug/deps/libmach-1a573f836e40cd36.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-8469d768695d9748.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-786c0f406992159b.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-eda54ffd3e6402cc.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-3b59adbc83c396a4.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-1d2bb09f4dcbd4be.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-e96acda46b77a2fd.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-596074f575b1f832.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-57f280c1596673cd.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-16132b5b2ecf9ec1.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-37286a0a9c4289ff.rlib" "-Wl,-Bdynamic" "-ldl" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib(backtrace-f8bcb4cb750f9c9d.backtrace.8na41fud-cgu.12.rcgu.o): In function `backtrace::symbolize::libbacktrace::init_state::{{closure}}': [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:150: undefined reference to `backtrace_create_state' [INFO] [stderr] /opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib(backtrace-f8bcb4cb750f9c9d.backtrace.8na41fud-cgu.12.rcgu.o): In function `backtrace::symbolize::libbacktrace::resolve': [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:167: undefined reference to `backtrace_pcinfo' [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:171: undefined reference to `backtrace_syminfo' [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 `mach`. [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/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.0.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.1.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.10.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.11.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.12.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.13.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.14.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.15.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.2.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.3.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.4.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.5.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.6.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.7.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.8.rcgu.o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.ray_tracing_demo.cnxw3gy6-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279" "/opt/crater/target/debug/examples/ray_tracing_demo-8adf9db9db9dc279.4v1qgdd7omq0icyj.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libregex-24eb768b17fd56bb.rlib" "/opt/crater/target/debug/deps/libutf8_ranges-ad1dc04e0493bd3b.rlib" "/opt/crater/target/debug/deps/libregex_syntax-a441907bce371315.rlib" "/opt/crater/target/debug/deps/libthread_local-78902114aa178f26.rlib" "/opt/crater/target/debug/deps/libthread_id-162f97a651bb5caf.rlib" "/opt/crater/target/debug/deps/libaho_corasick-b4080891edb2dc45.rlib" "/opt/crater/target/debug/deps/libmemchr-752770a70d883cf6.rlib" "/opt/crater/target/debug/deps/libtime-c02608636b985800.rlib" "/opt/crater/target/debug/deps/libmach-1a573f836e40cd36.rlib" "/opt/crater/target/debug/deps/libglium-4f9fc9da285d600d.rlib" "/opt/crater/target/debug/deps/libglutin-10cfd975a52e47a0.rlib" "/opt/crater/target/debug/deps/libwayland_window-f89d87040845107a.rlib" "/opt/crater/target/debug/deps/libtempfile-75154b1c62f49156.rlib" "/opt/crater/target/debug/deps/librand-25c25302f11e0dea.rlib" "/opt/crater/target/debug/deps/libbyteorder-f73e38a3da06a0ba.rlib" "/opt/crater/target/debug/deps/libwayland_kbd-46afdad9628dba57.rlib" "/opt/crater/target/debug/deps/libmemmap-17f6c6bb07b05b10.rlib" "/opt/crater/target/debug/deps/libosmesa_sys-9f7d18de51f3c3df.rlib" "/opt/crater/target/debug/deps/libwayland_client-de265238666c056e.rlib" "/opt/crater/target/debug/deps/libwayland_sys-6ada63629a156fea.rlib" "/opt/crater/target/debug/deps/liblazy_static-17a1dfe8df737fe1.rlib" "/opt/crater/target/debug/deps/libdlib-485e97652b7acd79.rlib" "/opt/crater/target/debug/deps/liblibloading-d1640d0f95d8df41.rlib" "/opt/crater/target/debug/deps/libcrossbeam-c61a9b0f27a2d7f4.rlib" "/opt/crater/target/debug/deps/libbitflags-a08c32e0d1827ba5.rlib" "/opt/crater/target/debug/deps/libx11_dl-4630a3720da4586b.rlib" "/opt/crater/target/debug/deps/libshared_library-6be27fb0e7eb7012.rlib" "/opt/crater/target/debug/deps/libsmallvec-6223ca88d0870ac5.rlib" "/opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib" "/opt/crater/target/debug/deps/libbacktrace_sys-d088574941fbec78.rlib" "/opt/crater/target/debug/deps/librustc_demangle-bedd9530c131cc28.rlib" "/opt/crater/target/debug/deps/libcfg_if-093b3a73669c0adf.rlib" "/opt/crater/target/debug/deps/libdbghelp-b3513b10232833cd.rlib" "/opt/crater/target/debug/deps/libwinapi-7dff080b6462bfe0.rlib" "/opt/crater/target/debug/deps/libkernel32-9b717afd956943fe.rlib" "/opt/crater/target/debug/deps/liblibc-7f3cd8e33873d9dc.rlib" "/opt/crater/target/debug/deps/liblazy_static-126057301ec7e4c8.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-8469d768695d9748.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-786c0f406992159b.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-eda54ffd3e6402cc.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-3b59adbc83c396a4.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-1d2bb09f4dcbd4be.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-e96acda46b77a2fd.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-596074f575b1f832.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-57f280c1596673cd.rlib" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-16132b5b2ecf9ec1.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/c1c3c4e95b69dfeaca5c5db6c622d7f90ad30a54-alt/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-37286a0a9c4289ff.rlib" "-Wl,-Bdynamic" "-ldl" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib(backtrace-f8bcb4cb750f9c9d.backtrace.8na41fud-cgu.12.rcgu.o): In function `backtrace::symbolize::libbacktrace::init_state::{{closure}}': [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:150: undefined reference to `backtrace_create_state' [INFO] [stderr] /opt/crater/target/debug/deps/libbacktrace-f8bcb4cb750f9c9d.rlib(backtrace-f8bcb4cb750f9c9d.backtrace.8na41fud-cgu.12.rcgu.o): In function `backtrace::symbolize::libbacktrace::resolve': [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:167: undefined reference to `backtrace_pcinfo' [INFO] [stderr] /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.2.3/src/symbolize/libbacktrace.rs:171: undefined reference to `backtrace_syminfo' [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 `mach`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "b6cd3859d67e35496bcbabada9cdd323d344e32b34deb541883d9bdd03f390cf"` [INFO] running `"docker" "rm" "-f" "b6cd3859d67e35496bcbabada9cdd323d344e32b34deb541883d9bdd03f390cf"` [INFO] [stdout] b6cd3859d67e35496bcbabada9cdd323d344e32b34deb541883d9bdd03f390cf