[INFO] updating cached repository https://github.com/cedric-h/sorry [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] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 99d0839f367d28a732e0a9791900621f340737a1 [INFO] testing cedric-h/sorry against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fcedric-h%2Fsorry" "/workspace/builds/worker-9/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-9/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/cedric-h/sorry 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/cedric-h/sorry [INFO] finished tweaking git repo https://github.com/cedric-h/sorry [INFO] tweaked toml for git repo https://github.com/cedric-h/sorry written to /workspace/builds/worker-9/source/Cargo.toml [INFO] crate git repo https://github.com/cedric-h/sorry 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-9/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/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] 00fc003ceeca016f081e4779d535d2b3985a715cb77c3f92847cc012bee1378e [INFO] running `"docker" "start" "-a" "00fc003ceeca016f081e4779d535d2b3985a715cb77c3f92847cc012bee1378e"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling serde v1.0.102 [INFO] [stderr] Compiling libc v0.2.62 [INFO] [stderr] Compiling stdweb-internal-runtime v0.1.4 [INFO] [stderr] Compiling base-x v0.2.5 [INFO] [stderr] Compiling discard v1.0.4 [INFO] [stderr] Compiling num-complex v0.2.3 [INFO] [stderr] Compiling num-rational v0.2.2 [INFO] [stderr] Compiling c2-chacha v0.2.2 [INFO] [stderr] Compiling syn v0.15.44 [INFO] [stderr] Compiling stdweb v0.4.18 [INFO] [stderr] Compiling approx v0.3.2 [INFO] [stderr] Compiling getrandom v0.1.12 [INFO] [stderr] Compiling rand_core v0.5.1 [INFO] [stderr] Compiling rand_chacha v0.2.1 [INFO] [stderr] Compiling rand v0.7.2 [INFO] [stderr] Compiling rand_distr v0.2.2 [INFO] [stderr] Compiling serde_derive v1.0.98 [INFO] [stderr] Compiling serde_json v1.0.40 [INFO] [stderr] Compiling stdweb-derive v0.5.1 [INFO] [stderr] Compiling alga v0.9.1 [INFO] [stderr] Compiling stdweb-internal-macros v0.2.7 [INFO] [stderr] Compiling nalgebra v0.19.0 [INFO] [stderr] Compiling ncollide2d v0.21.0 [INFO] [stderr] Compiling degen v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused variable: `i` [INFO] [stderr] --> src/main.rs:187:33 [INFO] [stderr] | [INFO] [stderr] 187 | ... for i in 0..10 { [INFO] [stderr] | ^ help: if this is intentional, prefix it with an underscore: `_i` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `i` [INFO] [stderr] --> src/main.rs:242:33 [INFO] [stderr] | [INFO] [stderr] 242 | ... for i in 0..20 { [INFO] [stderr] | ^ help: if this is intentional, prefix it with an underscore: `_i` [INFO] [stderr] [INFO] [stderr] warning: cannot borrow `*game` as mutable because it is also borrowed as immutable [INFO] [stderr] --> src/main.rs:98:29 [INFO] [stderr] | [INFO] [stderr] 96 | ... let enemy_pos = game.isos.get(i_enemy).expect("enemy with no pos"); [INFO] [stderr] | --------- immutable borrow occurs here [INFO] [stderr] 97 | ... [INFO] [stderr] 98 | ... game.insert_bullet( [INFO] [stderr] | ^^^^ mutable borrow occurs here [INFO] [stderr] 99 | ... "Flower3", [INFO] [stderr] 100 | ... enemy_pos.clone(), [INFO] [stderr] | --------- immutable borrow later used here [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(mutable_borrow_reservation_conflict)]` on by default [INFO] [stderr] = warning: this borrowing pattern was not meant to be accepted, and may become a hard error in the future [INFO] [stderr] = note: for more information, see issue #59159 [INFO] [stderr] [INFO] [stderr] warning: cannot borrow `*game` as mutable because it is also borrowed as immutable [INFO] [stderr] --> src/main.rs:319:29 [INFO] [stderr] | [INFO] [stderr] 317 | ... let enemy_pos = game.isos.get(i_enemy).expect("enemy with no pos"); [INFO] [stderr] | --------- immutable borrow occurs here [INFO] [stderr] 318 | ... [INFO] [stderr] 319 | ... game.insert_bullet( [INFO] [stderr] | ^^^^ mutable borrow occurs here [INFO] [stderr] 320 | ... "Flower3", [INFO] [stderr] 321 | ... enemy_pos.clone(), [INFO] [stderr] | --------- immutable borrow later used here [INFO] [stderr] | [INFO] [stderr] = warning: this borrowing pattern was not meant to be accepted, and may become a hard error in the future [INFO] [stderr] = note: for more information, see issue #59159 [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/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a" "/opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.3m1kt1o1uusxiquv.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/libncollide2d-d2e28eefc64083fb.rlib" "/opt/rustwide/target/debug/deps/libslotmap-b4a9877b402cbf34.rlib" "/opt/rustwide/target/debug/deps/libpetgraph-ec1ecbc82009af3e.rlib" "/opt/rustwide/target/debug/deps/libordermap-6e70e5659d4b98b6.rlib" "/opt/rustwide/target/debug/deps/libfixedbitset-80014ab6e67a7424.rlib" "/opt/rustwide/target/debug/deps/libsmallvec-43702341e82bdadb.rlib" "/opt/rustwide/target/debug/deps/libslab-4c5e5a4b1eda1a25.rlib" "/opt/rustwide/target/debug/deps/libeither-735b1315b3e6885c.rlib" "/opt/rustwide/target/debug/deps/libbitflags-a5dbca2b31cd7d4c.rlib" "/opt/rustwide/target/debug/deps/libdowncast_rs-9b009ef727c8987e.rlib" "/opt/rustwide/target/debug/deps/libnalgebra-54722343f0d2d3e3.rlib" "/opt/rustwide/target/debug/deps/libalga-f5e8bdf18c632d21.rlib" "/opt/rustwide/target/debug/deps/librand_distr-d773aae338a56748.rlib" "/opt/rustwide/target/debug/deps/librand-b03d5d8aeebc9926.rlib" "/opt/rustwide/target/debug/deps/librand_chacha-a25657c32dcc14b7.rlib" "/opt/rustwide/target/debug/deps/libc2_chacha-b9a294c8e91af9ed.rlib" "/opt/rustwide/target/debug/deps/libppv_lite86-21448f6243ece856.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-6d2e4566366293b5.rlib" "/opt/rustwide/target/debug/deps/librand_core-82f2b296123eddae.rlib" "/opt/rustwide/target/debug/deps/libgetrandom-b2a4e5c90205eff1.rlib" "/opt/rustwide/target/debug/deps/liblibc-dae5a04eefecce01.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-1bfa4eb209c6e5e2.rlib" "/opt/rustwide/target/debug/deps/libnum_rational-a7b46adcca2c49a7.rlib" "/opt/rustwide/target/debug/deps/libnum_integer-8c99e2cb215bfb30.rlib" "/opt/rustwide/target/debug/deps/libnum_complex-a95c4f802bdc32b7.rlib" "/opt/rustwide/target/debug/deps/libmatrixmultiply-f423a24e4add1687.rlib" "/opt/rustwide/target/debug/deps/librawpointer-17d31d634d793217.rlib" "/opt/rustwide/target/debug/deps/libgeneric_array-dab7a2395c132044.rlib" "/opt/rustwide/target/debug/deps/libtypenum-5a3b86744df5d546.rlib" "/opt/rustwide/target/debug/deps/libapprox-fecca321adec1adf.rlib" "/opt/rustwide/target/debug/deps/libnum_traits-126f5b2c51ab92f9.rlib" "/opt/rustwide/target/debug/deps/libstdweb-d90efdd06c4e8b17.rlib" "/opt/rustwide/target/debug/deps/libdiscard-655a8a041e78b6aa.rlib" "/opt/rustwide/target/debug/deps/libstdweb_internal_runtime-2b8aad42a055c045.rlib" "/opt/rustwide/target/debug/deps/libserde_json-b819e23d88a0a8b7.rlib" "/opt/rustwide/target/debug/deps/libryu-467d67315b97dc82.rlib" "/opt/rustwide/target/debug/deps/libitoa-7de3c31887c9a994.rlib" "/opt/rustwide/target/debug/deps/libserde-8040177123433751.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" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: /opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.9.rcgu.o: in function `degen::random_double::snippet::__cargo_web_snippet_77c7f20d9ad1903cb1faad4b79591e5576426760': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:101: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.9.rcgu.o: in function `degen::Level::third::{{closure}}::snippet::__cargo_web_snippet_4d2bc1d4430b5111fa7854fe3faa5edadb8f2fde': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:101: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.9.rcgu.o: in function `degen::Level::fourth::{{closure}}::snippet::__cargo_web_snippet_df8ea747a7a8e3ca7cfa96877109f13beb2efe74': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:101: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.9.rcgu.o: in function `degen::Level::fifth::{{closure}}::snippet::__cargo_web_snippet_b7c50672bd052d971d7e75d8bba36beab6c4bbe1': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:101: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.9.rcgu.o: in function `degen::Level::second::{{closure}}::snippet::__cargo_web_snippet_246a83b65767071ec0f6865d004dadb7dad7c101': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:101: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/degen-968f62a07a89e81a.degen.6xlx51vr-cgu.9.rcgu.o:/opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:101: more undefined references to `emscripten_asm_const_int' follow [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/libstdweb-d90efdd06c4e8b17.rlib(stdweb-d90efdd06c4e8b17.stdweb.3ew3u92t-cgu.6.rcgu.o): in function `stdweb::webcore::ffi::emscripten::event_loop': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/ffi/emscripten.rs:9: undefined reference to `emscripten_pause_main_loop' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/ffi/emscripten.rs:11: undefined reference to `emscripten_set_main_loop' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/libstdweb-d90efdd06c4e8b17.rlib(stdweb-d90efdd06c4e8b17.stdweb.3ew3u92t-cgu.7.rcgu.o): in function `stdweb::webcore::global_arena::reserve_impl::snippet::__cargo_web_snippet_285aac3fba72d67cb459d37d4d21aa4fb62598ba': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:32: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/libstdweb-d90efdd06c4e8b17.rlib(stdweb-d90efdd06c4e8b17.stdweb.3ew3u92t-cgu.8.rcgu.o): in function `stdweb::webcore::value::Reference::from_raw_unchecked::snippet::__cargo_web_snippet_9f22d4ca7bc938409787341b7db181f8dd41e6df': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:32: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/libstdweb-d90efdd06c4e8b17.rlib(stdweb-d90efdd06c4e8b17.stdweb.3ew3u92t-cgu.8.rcgu.o): in function `::drop::snippet::__cargo_web_snippet_80d6d56760c65e49b7be8b6b01c1ea861b046bf0': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:32: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/libstdweb-d90efdd06c4e8b17.rlib(stdweb-d90efdd06c4e8b17.stdweb.3ew3u92t-cgu.9.rcgu.o): in function `> as stdweb::webcore::serialization::FuncallAdapter>::funcall_adapter::snippet::__cargo_web_snippet_ff5103e6cc179d13b4c7a785bdce2708fd559fc0': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:32: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] /usr/bin/ld: /opt/rustwide/target/debug/deps/libstdweb-d90efdd06c4e8b17.rlib(stdweb-d90efdd06c4e8b17.stdweb.3ew3u92t-cgu.9.rcgu.o): in function `> as stdweb::webcore::serialization::FuncallAdapter>::funcall_adapter::snippet::__cargo_web_snippet_ff5103e6cc179d13b4c7a785bdce2708fd559fc0': [INFO] [stderr] /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.18/src/webcore/macros.rs:32: undefined reference to `emscripten_asm_const_int' [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 4 warnings emitted [INFO] [stderr] [INFO] [stderr] error: could not compile `degen`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "00fc003ceeca016f081e4779d535d2b3985a715cb77c3f92847cc012bee1378e"` [INFO] running `"docker" "rm" "-f" "00fc003ceeca016f081e4779d535d2b3985a715cb77c3f92847cc012bee1378e"` [INFO] [stdout] 00fc003ceeca016f081e4779d535d2b3985a715cb77c3f92847cc012bee1378e