2026-03-24 11:17:31 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
2026-03-24 11:23:12 +00:00
|
|
|
cargo build --manifest-path ./rust/Cargo.toml
|
2026-03-24 15:28:40 +00:00
|
|
|
|
|
|
|
|
BUNDLED_LIB_DIR=$(cabal list-bin . | sed -e 's=x/garnet/build/garnet/garnet=build=g')
|
|
|
|
|
mkdir -p $BUNDLED_LIB_DIR
|
2026-03-25 12:43:36 +09:00
|
|
|
ln -sf $(pwd)/rust/target/debug/libgarnet_rs.a $BUNDLED_LIB_DIR/libCgarnet_rs.a
|
2026-03-24 15:28:40 +00:00
|
|
|
|
2026-03-24 11:23:12 +00:00
|
|
|
cabal build
|