garnet/build

13 lines
359 B
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env bash
set -euo pipefail
2026-04-14 01:31:27 +01:00
# generate this file from Nix config for now to avoid duplication?
2026-03-24 11:23:12 +00:00
cargo build --manifest-path ./rust/Cargo.toml
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:36:52 +00:00
ln -sf $(pwd)/rust/target/debug/libgarnet_rs.a $BUNDLED_LIB_DIR/libCgarnet_rs.a
2026-03-24 11:23:12 +00:00
cabal build