From 712a65e2fc07ab4ca6ebec028faf9be5ecc43f9b Mon Sep 17 00:00:00 2001 From: Emma Turner Date: Thu, 11 Dec 2025 17:25:31 +0000 Subject: [PATCH] rustup show --- src/rust_deps/build.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/rust_deps/build.sh b/src/rust_deps/build.sh index 681770cafeea..51d9fe0e4b49 100755 --- a/src/rust_deps/build.sh +++ b/src/rust_deps/build.sh @@ -17,8 +17,14 @@ export OCTEZ_RUST_DEPS_NO_WASMER_HEADERS=1 export CARGO_TARGET_DIR # Build the Rust project. +rustc --version +rustc --print host-tuple + cargo build --release --locked --target-dir="$CARGO_TARGET_DIR" +ls -al "$CARGO_TARGET_DIR/" +ls -al "$CARGO_TARGET_DIR/release" + # Copy the built artifacts to the output directory. cp -f "$CARGO_TARGET_DIR/release/liboctez_rust_deps.a" "$OUT_DIR/liboctez_rust_deps.a" @@ -27,5 +33,5 @@ if [[ -r "$CARGO_TARGET_DIR/release/liboctez_rust_deps.so" ]]; then fi if [[ -r "$CARGO_TARGET_DIR/release/liboctez_rust_deps.dylib" ]]; then - cp -f "$CARGO_TARGET_DIR/release/liboctez_rust_deps.dylib" "$OUT_DIR/dlloctez_rust_deps.so" + cp -f "$CARGO_TARGET_DIR/release/liboctez_rust_deps.dylib" "$OUT_DIR/dlloctez_rust_deps.so" fi -- GitLab