Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix demo build for up to date libcrux #41

Open
jschneider-bensch opened this issue Nov 6, 2023 · 4 comments · May be fixed by #80
Open

Fix demo build for up to date libcrux #41

jschneider-bensch opened this issue Nov 6, 2023 · 4 comments · May be fixed by #80
Assignees
Labels
P2 Pick up next S small

Comments

@jschneider-bensch
Copy link
Contributor

          Let's file an issue to update this to get back to main or a release.

Originally posted by @franziskuskiefer in #40 (comment)

@jschneider-bensch jschneider-bensch added P2 Pick up next S small labels Nov 7, 2023
@ElianF
Copy link

ElianF commented Aug 27, 2024

I still have problems building the wasm demo of scrambledb on the main branch.

Executing the command

CC=emcc AR=emar wasm-pack build --target web --features wasm

with the latest version of the emsdk toolchain results in the following error

full error log
[INFO]: 🎯  Checking for the Wasm target...
[INFO]: 🌀  Compiling to Wasm...
       Fresh unicode-ident v1.0.12
       Fresh proc-macro2 v1.0.86
       Fresh quote v1.0.37
       Fresh syn v2.0.76
       Fresh autocfg v1.3.0
       Fresh wasm-bindgen-shared v0.2.93
       Fresh log v0.4.22
       Fresh bumpalo v3.16.0
       Fresh wasm-bindgen-backend v0.2.93
       Fresh wasm-bindgen-macro-support v0.2.93
       Fresh wasm-bindgen-macro v0.2.93
       Fresh once_cell v1.19.0
       Fresh cfg-if v1.0.0
       Fresh wasm-bindgen v0.2.93
       Fresh js-sys v0.3.70
       Fresh num-traits v0.2.19
       Fresh jobserver v0.1.32
       Fresh shlex v1.3.0
       Fresh cc v1.1.15
       Fresh num-integer v0.1.46
       Fresh natmod v0.1.0 (/home/service/atlas/atlas-spec/natmod)
       Fresh num-bigint v0.4.6
       Fresh getrandom v0.2.15
       Fresh zerocopy-derive v0.7.35
       Fresh byteorder v1.5.0
       Fresh zerocopy v0.7.35
       Fresh rand_core v0.6.4
warning: unexpected `cfg` condition name: `doc_cfg`
  --> /home/service/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs:38:13
   |
38 | #![cfg_attr(doc_cfg, feature(doc_cfg))]
   |             ^^^^^^^
   |
   = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows`
   = help: consider using a Cargo feature instead
   = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
            [lints.rust]
            unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
   = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
   = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
   = note: `#[warn(unexpected_cfgs)]` on by default

warning: unexpected `cfg` condition name: `doc_cfg`
  --> /home/service/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs:50:16
   |
50 |     #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
   |                ^^^^^^^
   |
   = help: consider using a Cargo feature instead
   = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
            [lints.rust]
            unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
   = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
   = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration

warning: unexpected `cfg` condition name: `doc_cfg`
  --> /home/service/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs:64:16
   |
64 |     #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
   |                ^^^^^^^
   |
   = help: consider using a Cargo feature instead
   = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
            [lints.rust]
            unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
   = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
   = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration

warning: unexpected `cfg` condition name: `doc_cfg`
  --> /home/service/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/error.rs:75:16
   |
75 |     #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
   |                ^^^^^^^
   |
   = help: consider using a Cargo feature instead
   = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
            [lints.rust]
            unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
   = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
   = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration

warning: unexpected `cfg` condition name: `doc_cfg`
  --> /home/service/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/os.rs:46:12
   |
46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))]
   |            ^^^^^^^
   |
   = help: consider using a Cargo feature instead
   = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
            [lints.rust]
            unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
   = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
   = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration

warning: unexpected `cfg` condition name: `doc_cfg`
   --> /home/service/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs:411:16
    |
411 |     #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))]
    |                ^^^^^^^
    |
    = help: consider using a Cargo feature instead
    = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
             [lints.rust]
             unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
    = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
    = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration

warning: `rand_core` (lib) generated 6 warnings
   Compiling libcrux-hacl v0.0.2-alpha.3 (https://github.com/cryspen/libcrux.git#4873df77)
     Running `CARGO=/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/cargo CARGO_CFG_PANIC=abort CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=wasm32 CARGO_CFG_TARGET_ENDIAN=little CARGO_CFG_TARGET_ENV='' CARGO_CFG_TARGET_FAMILY=wasm CARGO_CFG_TARGET_FEATURE=mutable-globals,sign-ext CARGO_CFG_TARGET_HAS_ATOMIC=16,32,64,8,ptr CARGO_CFG_TARGET_OS=unknown CARGO_CFG_TARGET_POINTER_WIDTH=32 CARGO_CFG_TARGET_VENDOR=unknown CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl CARGO_PKG_AUTHORS=Cryspen CARGO_PKG_DESCRIPTION='hacl sys crate of libcrux.' CARGO_PKG_HOMEPAGE='https://github.com/cryspen/libcrux' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libcrux-hacl CARGO_PKG_README=Readme.md CARGO_PKG_REPOSITORY='https://github.com/cryspen/libcrux' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.0.2-alpha.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE=alpha.3 DEBUG=false HOST=x86_64-unknown-linux-gnu LD_LIBRARY_PATH='/home/service/atlas/atlas-spec/target/release/deps:/home/service/atlas/atlas-spec/target/release:/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib:/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib' NUM_JOBS=1 OPT_LEVEL=3 OUT_DIR=/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out PROFILE=release RUSTC=/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc RUSTDOC=/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustdoc TARGET=wasm32-unknown-unknown /home/service/atlas/atlas-spec/target/release/build/libcrux-hacl-bbd9f2a16cd4ec9f/build-script-build`
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-changed=c
[libcrux-hacl 0.0.2-alpha.3] OUT_DIR = Some(/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out)
[libcrux-hacl 0.0.2-alpha.3] TARGET = Some(wasm32-unknown-unknown)
[libcrux-hacl 0.0.2-alpha.3] HOST = Some(x86_64-unknown-linux-gnu)
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CC_wasm32-unknown-unknown
[libcrux-hacl 0.0.2-alpha.3] CC_wasm32-unknown-unknown = None
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CC_wasm32_unknown_unknown
[libcrux-hacl 0.0.2-alpha.3] CC_wasm32_unknown_unknown = None
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=TARGET_CC
[libcrux-hacl 0.0.2-alpha.3] TARGET_CC = None
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CC
[libcrux-hacl 0.0.2-alpha.3] CC = Some(emcc)
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CC_KNOWN_WRAPPER_CUSTOM
[libcrux-hacl 0.0.2-alpha.3] CC_KNOWN_WRAPPER_CUSTOM = None
[libcrux-hacl 0.0.2-alpha.3] RUSTC_WRAPPER = None
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
[libcrux-hacl 0.0.2-alpha.3] CRATE_CC_NO_DEFAULTS = None
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=WASI_SYSROOT
[libcrux-hacl 0.0.2-alpha.3] WASI_SYSROOT = None
[libcrux-hacl 0.0.2-alpha.3] DEBUG = Some(false)
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CFLAGS_wasm32-unknown-unknown
[libcrux-hacl 0.0.2-alpha.3] CFLAGS_wasm32-unknown-unknown = None
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CFLAGS_wasm32_unknown_unknown
[libcrux-hacl 0.0.2-alpha.3] CFLAGS_wasm32_unknown_unknown = None
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=TARGET_CFLAGS
[libcrux-hacl 0.0.2-alpha.3] TARGET_CFLAGS = None
[libcrux-hacl 0.0.2-alpha.3] cargo:rerun-if-env-changed=CFLAGS
[libcrux-hacl 0.0.2-alpha.3] CFLAGS = None
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/2b293b391e807761-hacl.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/config/hacl.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_NaCl.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_NaCl.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Salsa20.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Salsa20.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_MAC_Poly1305.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_MAC_Poly1305.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Curve25519_51.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Curve25519_51.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HMAC_DRBG.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HMAC_DRBG.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HMAC.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HMAC.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA2.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA2.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Blake2b.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Blake2b.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Blake2s.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Blake2s.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Lib_Memzero0.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Lib_Memzero0.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Ed25519.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Ed25519.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_EC_Ed25519.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_EC_Ed25519.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Base.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Base.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum256_32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum256_32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum4096_32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum4096_32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_GenericField32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_GenericField32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_AEAD_Chacha20Poly1305.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_AEAD_Chacha20Poly1305.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Chacha20.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Chacha20.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Chacha20_Vec32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Chacha20_Vec32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_P256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_P256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_K256_ECDSA.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_K256_ECDSA.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_EC_K256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_EC_K256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_FFDHE.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_FFDHE.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA3.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA3.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA3_Scalar.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA3_Scalar.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA1.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA1.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_MD5.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_MD5.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] error occurred: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_RSAPSS.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_RSAPSS.c" with args emcc did not execute successfully (status code exit status: 1).
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HKDF.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HKDF.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
[libcrux-hacl 0.0.2-alpha.3] 
[libcrux-hacl 0.0.2-alpha.3] exit status: 1
[libcrux-hacl 0.0.2-alpha.3] cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_RSAPSS.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_RSAPSS.c" with args emcc did not execute successfully (status code exit status: 1).
The following warnings were emitted during compilation:

warning: [email protected]: emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/2b293b391e807761-hacl.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/config/hacl.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_NaCl.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_NaCl.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Salsa20.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Salsa20.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_MAC_Poly1305.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_MAC_Poly1305.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Curve25519_51.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Curve25519_51.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HMAC_DRBG.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HMAC_DRBG.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HMAC.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HMAC.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA2.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA2.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Blake2b.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Blake2b.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Blake2s.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Blake2s.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Lib_Memzero0.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Lib_Memzero0.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Ed25519.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Ed25519.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_EC_Ed25519.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_EC_Ed25519.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Base.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Base.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum256_32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum256_32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum4096_32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum4096_32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_GenericField32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_GenericField32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_AEAD_Chacha20Poly1305.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_AEAD_Chacha20Poly1305.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Chacha20.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Chacha20.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Chacha20_Vec32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Chacha20_Vec32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_P256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_P256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_K256_ECDSA.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_K256_ECDSA.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_EC_K256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_EC_K256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_FFDHE.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_FFDHE.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA3.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA3.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA3_Scalar.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA3_Scalar.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA1.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA1.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_MD5.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_MD5.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HKDF.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HKDF.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
warning: [email protected]: ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_RSAPSS.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_RSAPSS.c" with args emcc did not execute successfully (status code exit status: 1).

error: failed to run custom build command for `libcrux-hacl v0.0.2-alpha.3 (https://github.com/cryspen/libcrux.git#4873df77)`

Caused by:
  process didn't exit successfully: `CARGO=/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/cargo CARGO_CFG_PANIC=abort CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=wasm32 CARGO_CFG_TARGET_ENDIAN=little CARGO_CFG_TARGET_ENV='' CARGO_CFG_TARGET_FAMILY=wasm CARGO_CFG_TARGET_FEATURE=mutable-globals,sign-ext CARGO_CFG_TARGET_HAS_ATOMIC=16,32,64,8,ptr CARGO_CFG_TARGET_OS=unknown CARGO_CFG_TARGET_POINTER_WIDTH=32 CARGO_CFG_TARGET_VENDOR=unknown CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl CARGO_PKG_AUTHORS=Cryspen CARGO_PKG_DESCRIPTION='hacl sys crate of libcrux.' CARGO_PKG_HOMEPAGE='https://github.com/cryspen/libcrux' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libcrux-hacl CARGO_PKG_README=Readme.md CARGO_PKG_REPOSITORY='https://github.com/cryspen/libcrux' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.0.2-alpha.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE=alpha.3 DEBUG=false HOST=x86_64-unknown-linux-gnu LD_LIBRARY_PATH='/home/service/atlas/atlas-spec/target/release/deps:/home/service/atlas/atlas-spec/target/release:/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib:/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib' NUM_JOBS=1 OPT_LEVEL=3 OUT_DIR=/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out PROFILE=release RUSTC=/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc RUSTDOC=/home/service/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustdoc TARGET=wasm32-unknown-unknown /home/service/atlas/atlas-spec/target/release/build/libcrux-hacl-bbd9f2a16cd4ec9f/build-script-build` (exit status: 1)
  --- stdout
  cargo:rerun-if-changed=c
  OUT_DIR = Some(/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out)
  TARGET = Some(wasm32-unknown-unknown)
  HOST = Some(x86_64-unknown-linux-gnu)
  cargo:rerun-if-env-changed=CC_wasm32-unknown-unknown
  CC_wasm32-unknown-unknown = None
  cargo:rerun-if-env-changed=CC_wasm32_unknown_unknown
  CC_wasm32_unknown_unknown = None
  cargo:rerun-if-env-changed=TARGET_CC
  TARGET_CC = None
  cargo:rerun-if-env-changed=CC
  CC = Some(emcc)
  cargo:rerun-if-env-changed=CC_KNOWN_WRAPPER_CUSTOM
  CC_KNOWN_WRAPPER_CUSTOM = None
  RUSTC_WRAPPER = None
  cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT
  cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
  CRATE_CC_NO_DEFAULTS = None
  cargo:rerun-if-env-changed=WASI_SYSROOT
  WASI_SYSROOT = None
  DEBUG = Some(false)
  cargo:rerun-if-env-changed=CFLAGS_wasm32-unknown-unknown
  CFLAGS_wasm32-unknown-unknown = None
  cargo:rerun-if-env-changed=CFLAGS_wasm32_unknown_unknown
  CFLAGS_wasm32_unknown_unknown = None
  cargo:rerun-if-env-changed=TARGET_CFLAGS
  TARGET_CFLAGS = None
  cargo:rerun-if-env-changed=CFLAGS
  CFLAGS = None
  cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)
  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/2b293b391e807761-hacl.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/config/hacl.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_NaCl.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_NaCl.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Salsa20.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Salsa20.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_MAC_Poly1305.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_MAC_Poly1305.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Curve25519_51.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Curve25519_51.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HMAC_DRBG.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HMAC_DRBG.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HMAC.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HMAC.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA2.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA2.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Blake2b.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Blake2b.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Blake2s.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Blake2s.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Lib_Memzero0.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Lib_Memzero0.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Ed25519.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Ed25519.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_EC_Ed25519.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_EC_Ed25519.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_Base.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_Base.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum256_32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum256_32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Bignum4096_32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Bignum4096_32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_GenericField32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_GenericField32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_AEAD_Chacha20Poly1305.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_AEAD_Chacha20Poly1305.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Chacha20.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Chacha20.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Chacha20_Vec32.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Chacha20_Vec32.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_P256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_P256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_K256_ECDSA.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_K256_ECDSA.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_EC_K256.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_EC_K256.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_FFDHE.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_FFDHE.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA3.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA3.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA3_Scalar.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA3_Scalar.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_SHA1.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_SHA1.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_Hash_MD5.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_Hash_MD5.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_HKDF.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_HKDF.c" with args emcc did not execute successfully (status code exit status: 1).cargo:warning=emcc: error: unsupported target: wasm32-unknown-unknown (emcc only supports wasm64-unknown-emscripten and wasm32-unknown-emscripten)

  exit status: 1
  cargo:warning=ToolExecError: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_RSAPSS.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_RSAPSS.c" with args emcc did not execute successfully (status code exit status: 1).

  --- stderr


  error occurred: Command "emcc" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "-fno-exceptions" "--target=wasm32-unknown-unknown" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/include" "-I" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/karamel/krmllib/dist/minimal" "-Wall" "-Wextra" "-DRELOCATABLE=1" "-DTARGET_ARCHITECTURE=0" "-DLINUX_NO_EXPLICIT_BZERO=1" "-o" "/home/service/atlas/atlas-spec/target/wasm32-unknown-unknown/release/build/libcrux-hacl-87c93f1fbffe2f26/out/63600787dde92a88-Hacl_RSAPSS.o" "-c" "/home/service/.cargo/git/checkouts/libcrux-ea0a4d65f7f0d796/4873df7/sys/hacl/c/src/Hacl_RSAPSS.c" with args emcc did not execute successfully (status code exit status: 1).


Error: Compiling your crate to WebAssembly failed
Caused by: Compiling your crate to WebAssembly failed
Caused by: failed to execute `cargo build`: exited with exit status: 101
  full command: cd "/home/service/atlas/atlas-spec/scrambledb" && "cargo" "build" "--lib" "--release" "--target" "wasm32-unknown-unknown" "--features" "wasm" "-vv"

Pinning the libcrux version as mentioned in the thread above or reverting to some (arbitrary) older version of emsdk did not resolve the issue for me.

Anything else I could try?

@jschneider-bensch jschneider-bensch self-assigned this Sep 2, 2024
@jschneider-bensch
Copy link
Contributor Author

Thanks for your report on this issue! I'll look into this now.

@ElianF
Copy link

ElianF commented Sep 10, 2024

Thanks, this completely fixes my issues building the project.

Also, why is there a difference in visuals between the current version and the online demo? It does not seems to restrict me in any way, I was just wondering where it came from.

@jschneider-bensch
Copy link
Contributor Author

That's good to know, thanks for the update!
I've focused on the build issues first, and have not gotten around to making sure everything is consistent with the old demo build.

In particular, I've replaced the demo sample data with much shorter strings since the new re-rerandomizable encryption scheme is quite inefficient.

In more detail, fixing the build issue meant replacing the default dependency on libcrux in the demo. In ScrambleDB, there is a requirement for a re-randomizable public key encryption scheme. In the original publication, this is the ElGamal PKE on its own, which makes it so data is limited to whatever can be represented as ElGamal plaintexts, i.e. single group elements and in particular not arbitrary length data (since that could not be encoded in a single group element). This is also what is part of the original specification and demo (we do a little sleight of hand behind the scenes to make it seem, for the purpose of the demo, as though we're handling arbitrary length input data, when we're really handling the hash of that data into the group).
The dependency on libcrux came in to provide an implementation of HPKE, so we can replace purely ElGamal based data encryption with a much more efficient version based on double encryption using HPKE, which can also properly handle arbitrary lenght plaintext data. Unfortunately, this doesn't give exactly the same guarantees as the purely El Gamal version, and can't be easily compiled to WASM, leading to the build issue you ran into.
I wanted to address both the demo build and the insufficiency of the default ElGamal scheme in one go, so I implemented a new ElGamal based scheme, which (quite inefficiently) encodes and decodes between arbitrary length data and vectors of group elements and encrypts / decrypts these vectors component-wise. This way we can compile to WASM and handle arbitrary length data, but it's very inefficient.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
P2 Pick up next S small
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants