diff --git a/contracts/c-example/build.sh b/contracts/c-example/build.sh index 171ac80c..18fd3267 100755 --- a/contracts/c-example/build.sh +++ b/contracts/c-example/build.sh @@ -2,6 +2,8 @@ BASEDIR=$(dirname "$0") +echo "Building C example contract..." + clang -nostdlib -Os \ --target=wasm64 \ -Wl,--allow-undefined \ @@ -11,3 +13,5 @@ clang -nostdlib -Os \ -Wl,--export=out_of_bounds \ "$BASEDIR/contract.c" \ -o "$BASEDIR/../../target/wasm64-unknown-unknown/release/c-example.wasm" + +echo "End C example contract..."