[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 1.44.0 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-2/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/GuillaumeGomez/rust-toy-game on toolchain 1.44.0 [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "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-2/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" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/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" "+1.44.0" "build" "--frozen"` [INFO] [stdout] b46f6e90fe8999d8bda9e7fa96dd7943c498450811d8ed31c8dafecb46d02809 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `"docker" "start" "-a" "b46f6e90fe8999d8bda9e7fa96dd7943c498450811d8ed31c8dafecb46d02809"` [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: method is never used: `is_move_to_player` [INFO] [stderr] --> src/enemy.rs:80:5 [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/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.game.f2vuxunf-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4" "/opt/rustwide/target/debug/deps/game-85b253595f525ba4.4baazfnmu0pas5t8.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libonce_cell-961f5fb58bae86f1.rlib" "/opt/rustwide/target/debug/deps/librand-90a00112e0a81b89.rlib" "/opt/rustwide/target/debug/deps/librand_chacha-ccf61aad0a50faaf.rlib" "/opt/rustwide/target/debug/deps/libppv_lite86-4d8ca1d5617e4d1b.rlib" "/opt/rustwide/target/debug/deps/librand_core-68fd3e606fc24920.rlib" "/opt/rustwide/target/debug/deps/libgetrandom-1cc9a5cf38868802.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-c207894dabf2ad2d.rlib" "/opt/rustwide/target/debug/deps/libsdl2-04abab409e603df5.rlib" "/opt/rustwide/target/debug/deps/libsdl2_sys-4ccaf2d6af05ffa1.rlib" "/opt/rustwide/target/debug/deps/libbitflags-0bb1eb8c2caf8528.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-807f2c476a0e6b86.rlib" "/opt/rustwide/target/debug/deps/liblibc-b9b48b62b9633cf5.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-205127404fcba336.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-a657948fb7763780.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-4af901391177f653.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-9bdd51edf637d1e0.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-df9a9630b2ea2e1e.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-fddbfe63d5cc9339.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-dc1fcc6e43806791.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-e2f4bff19e00107e.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-a152d13c1d7ed405.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-d92b841792fc008d.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-a64c249515c023f5.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-57654524b3e40c00.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-72180f1527a726a2.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-990cc8f4a91a3ab4.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" "b46f6e90fe8999d8bda9e7fa96dd7943c498450811d8ed31c8dafecb46d02809"` [INFO] running `"docker" "rm" "-f" "b46f6e90fe8999d8bda9e7fa96dd7943c498450811d8ed31c8dafecb46d02809"` [INFO] [stdout] b46f6e90fe8999d8bda9e7fa96dd7943c498450811d8ed31c8dafecb46d02809