[INFO] updating cached repository https://github.com/GuillaumeGomez/rust-toy-game [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] [stderr] From https://github.com/GuillaumeGomez/rust-toy-game [INFO] [stderr] 9048da8..f287911 master -> master [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] f2879112bd47e718517cbe7a15a6b8b547842fd4 [INFO] testing GuillaumeGomez/rust-toy-game against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FGuillaumeGomez%2Frust-toy-game" "/workspace/builds/worker-11/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-11/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/GuillaumeGomez/rust-toy-game on toolchain beta-2020-06-03 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/GuillaumeGomez/rust-toy-game [INFO] finished tweaking git repo https://github.com/GuillaumeGomez/rust-toy-game [INFO] tweaked toml for git repo https://github.com/GuillaumeGomez/rust-toy-game written to /workspace/builds/worker-11/source/Cargo.toml [INFO] crate git repo https://github.com/GuillaumeGomez/rust-toy-game already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2020-06-03" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 1ba14512468e7803ffafeafbc8286bb8d78b86d53d46fdff1206bd3f4d87d36f [INFO] running `"docker" "start" "-a" "1ba14512468e7803ffafeafbc8286bb8d78b86d53d46fdff1206bd3f4d87d36f"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling sdl2 v0.33.0 [INFO] [stderr] Compiling sdl2-sys v0.33.0 [INFO] [stderr] Compiling rand_chacha v0.2.2 [INFO] [stderr] Compiling rand v0.7.3 [INFO] [stderr] Compiling game v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused macro definition [INFO] [stderr] --> src/main.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / macro_rules! return_if_none { [INFO] [stderr] 18 | | ($x:expr) => {{ [INFO] [stderr] 19 | | match $x { [INFO] [stderr] 20 | | Some(x) => x, [INFO] [stderr] ... | [INFO] [stderr] 23 | | }}; [INFO] [stderr] 24 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_macros)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `sdl2::image::LoadSurface` [INFO] [stderr] --> src/enemy.rs:7:5 [INFO] [stderr] | [INFO] [stderr] 7 | use sdl2::image::LoadSurface; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::time::Instant` [INFO] [stderr] --> src/env.rs:11:5 [INFO] [stderr] | [INFO] [stderr] 11 | use std::time::Instant; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused imports: `Axis`, `GameController`, `self` [INFO] [stderr] --> src/menu.rs:1:24 [INFO] [stderr] | [INFO] [stderr] 1 | use sdl2::controller::{self, Axis, GameController}; [INFO] [stderr] | ^^^^ ^^^^ ^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::env::Env` [INFO] [stderr] --> src/menu.rs:14:5 [INFO] [stderr] | [INFO] [stderr] 14 | use crate::env::Env; [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `sdl2::pixels::PixelFormatEnum` [INFO] [stderr] --> src/texture_handler.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use sdl2::pixels::PixelFormatEnum; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/env.rs:220:17 [INFO] [stderr] | [INFO] [stderr] 220 | _ => vec![Event::ControllerAxisMotion { [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unreachable_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `tile_x` [INFO] [stderr] --> src/character.rs:815:14 [INFO] [stderr] | [INFO] [stderr] 815 | let (tile_x, tile_y, _, _, width, height) = self [INFO] [stderr] | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_tile_x` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `tile_y` [INFO] [stderr] --> src/character.rs:815:22 [INFO] [stderr] | [INFO] [stderr] 815 | let (tile_x, tile_y, _, _, width, height) = self [INFO] [stderr] | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_tile_y` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `dir2` [INFO] [stderr] --> src/enemy.rs:707:35 [INFO] [stderr] | [INFO] [stderr] 707 | let (dir, dir2) = self.get_directions(x_add, y_add); [INFO] [stderr] | ^^^^ help: if this is intentional, prefix it with an underscore: `_dir2` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `dir2` [INFO] [stderr] --> src/enemy.rs:752:31 [INFO] [stderr] | [INFO] [stderr] 752 | let (dir, dir2) = self.get_directions(x_add, y_add); [INFO] [stderr] | ^^^^ help: if this is intentional, prefix it with an underscore: `_dir2` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `elapsed` [INFO] [stderr] --> src/enemy.rs:468:9 [INFO] [stderr] | [INFO] [stderr] 468 | elapsed: u64, [INFO] [stderr] | ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_elapsed` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `which` [INFO] [stderr] --> src/env.rs:335:62 [INFO] [stderr] | [INFO] [stderr] 335 | ... Event::ControllerDeviceRemoved { which, .. } => { [INFO] [stderr] | ^^^^^ help: try ignoring the field: `which: _` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `which` [INFO] [stderr] --> src/env.rs:342:33 [INFO] [stderr] | [INFO] [stderr] 342 | ... which, [INFO] [stderr] | ^^^^^ help: try ignoring the field: `which: _` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `which` [INFO] [stderr] --> src/env.rs:389:58 [INFO] [stderr] | [INFO] [stderr] 389 | Event::ControllerDeviceRemoved { which, .. } => { [INFO] [stderr] | ^^^^^ help: try ignoring the field: `which: _` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `which` [INFO] [stderr] --> src/env.rs:393:63 [INFO] [stderr] | [INFO] [stderr] 393 | Event::ControllerButtonDown { button, which, .. } => match button { [INFO] [stderr] | ^^^^^ help: try ignoring the field: `which: _` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `which` [INFO] [stderr] --> src/env.rs:406:61 [INFO] [stderr] | [INFO] [stderr] 406 | Event::ControllerButtonUp { button, which, .. } => match button { [INFO] [stderr] | ^^^^^ help: try ignoring the field: `which: _` [INFO] [stderr] [INFO] [stderr] warning: value assigned to `surface` is never read [INFO] [stderr] --> src/texture_holder.rs:29:13 [INFO] [stderr] | [INFO] [stderr] 29 | surface = surface [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_assignments)]` on by default [INFO] [stderr] = help: maybe it is overwritten before being read? [INFO] [stderr] [INFO] [stderr] warning: unused variable: `x_add` [INFO] [stderr] --> src/weapon.rs:94:29 [INFO] [stderr] | [INFO] [stderr] 94 | let (angle, x_add, y_add) = match direction { [INFO] [stderr] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_x_add` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `y_add` [INFO] [stderr] --> src/weapon.rs:94:36 [INFO] [stderr] | [INFO] [stderr] 94 | let (angle, x_add, y_add) = match direction { [INFO] [stderr] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_y_add` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `debug` [INFO] [stderr] --> src/weapon.rs:89:45 [INFO] [stderr] | [INFO] [stderr] 89 | pub fn draw(&self, system: &mut System, debug: bool) { [INFO] [stderr] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_debug` [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/character.rs:709:21 [INFO] [stderr] | [INFO] [stderr] 709 | if let Some(mut effect) = effect { [INFO] [stderr] | ----^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_mut)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/enemy.rs:163:13 [INFO] [stderr] | [INFO] [stderr] 163 | let mut actions_moving = vec![ [INFO] [stderr] | ----^^^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `is_move_to_player` [INFO] [stderr] --> src/enemy.rs:80:8 [INFO] [stderr] | [INFO] [stderr] 80 | fn is_move_to_player(&self) -> bool { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: field is never read: `info` [INFO] [stderr] --> src/reward.rs:15:5 [INFO] [stderr] | [INFO] [stderr] 15 | info: RewardInfo, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy.rs:333:44 [INFO] [stderr] | [INFO] [stderr] 333 | [Direction::Right].into_iter(), [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(array_into_iter)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy.rs:337:61 [INFO] [stderr] | [INFO] [stderr] 337 | [Direction::Right, Direction::Down].into_iter(), [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy.rs:341:43 [INFO] [stderr] | [INFO] [stderr] 341 | [Direction::Down].into_iter(), [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy.rs:345:60 [INFO] [stderr] | [INFO] [stderr] 345 | [Direction::Left, Direction::Down].into_iter(), [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy.rs:349:43 [INFO] [stderr] | [INFO] [stderr] 349 | [Direction::Left].into_iter(), [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy.rs:353:58 [INFO] [stderr] | [INFO] [stderr] 353 | [Direction::Left, Direction::Up].into_iter(), [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy.rs:357:41 [INFO] [stderr] | [INFO] [stderr] 357 | [Direction::Up].into_iter(), [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy.rs:361:59 [INFO] [stderr] | [INFO] [stderr] 361 | [Direction::Right, Direction::Up].into_iter(), [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: associated constant `tile_width` should have an upper case name [INFO] [stderr] --> src/player.rs:70:15 [INFO] [stderr] | [INFO] [stderr] 70 | pub const tile_width: u32 = 23; [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper case: `TILE_WIDTH` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_upper_case_globals)]` on by default [INFO] [stderr] [INFO] [stderr] warning: associated constant `tile_height` should have an upper case name [INFO] [stderr] --> src/player.rs:71:15 [INFO] [stderr] | [INFO] [stderr] 71 | pub const tile_height: u32 = 23; [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper case: `TILE_HEIGHT` [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/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.game.4vrhj08t-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8" "/opt/rustwide/target/debug/deps/game-7bb7c57bcfc8d8a8.3waxibxroovi1jeq.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libonce_cell-37c2933cba6f0511.rlib" "/opt/rustwide/target/debug/deps/librand-93ecf3ed659924bc.rlib" "/opt/rustwide/target/debug/deps/librand_chacha-9ed7aea218d262f0.rlib" "/opt/rustwide/target/debug/deps/libppv_lite86-eb2823c1b1b026b4.rlib" "/opt/rustwide/target/debug/deps/librand_core-a641ebc97d227f01.rlib" "/opt/rustwide/target/debug/deps/libgetrandom-3742b24d31af7784.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-0d7329a98a9ffead.rlib" "/opt/rustwide/target/debug/deps/libsdl2-558fc3dbe70599b9.rlib" "/opt/rustwide/target/debug/deps/libsdl2_sys-75d0fac285f0c1c8.rlib" "/opt/rustwide/target/debug/deps/libbitflags-a637fa8d282392d5.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-36bd8bbfaaa85bd1.rlib" "/opt/rustwide/target/debug/deps/liblibc-4188ef2a529901ad.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-44f8eb3d0b2fad61.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-abc626f09920d361.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-546e83c8973f1a65.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-12768dfc68674934.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-e06867e4497f2ee8.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-cbc579f43f6df57b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-7abd6d5a7ebf9a23.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-46423c7bc03bd327.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-fc3773ed7bc68f07.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-9cdc98176efd27e2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-02d88502a763e06b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-8cdc9d38dd6cd3ce.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-336f7d63e72901ef.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-57917b1be5233117.rlib" "-Wl,-Bdynamic" "-lSDL2" "-lSDL2_image" "-lSDL2_ttf" "-lutil" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: cannot find -lSDL2_image [INFO] [stderr] /usr/bin/ld: cannot find -lSDL2_ttf [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 35 warnings emitted [INFO] [stderr] [INFO] [stderr] error: could not compile `game`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "1ba14512468e7803ffafeafbc8286bb8d78b86d53d46fdff1206bd3f4d87d36f"` [INFO] running `"docker" "rm" "-f" "1ba14512468e7803ffafeafbc8286bb8d78b86d53d46fdff1206bd3f4d87d36f"` [INFO] [stdout] 1ba14512468e7803ffafeafbc8286bb8d78b86d53d46fdff1206bd3f4d87d36f