veilid/veilid-wasm/wasm_build.sh

57 lines
2.3 KiB
Bash
Raw Normal View History

2022-03-15 13:33:34 +00:00
#!/bin/bash
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
2022-12-25 16:46:32 +00:00
set -eo pipefail
get_abs_filename() {
# $1 : relative filename
echo "$(cd "$(dirname "$1")" && pwd)/$(basename "$1")"
}
2022-03-17 14:31:10 +00:00
pushd $SCRIPTDIR &> /dev/null
2022-06-16 03:29:45 +00:00
if [ -f /usr/local/opt/llvm/bin/llvm-dwarfdump ]; then
DWARFDUMP=/usr/local/opt/llvm/bin/llvm-dwarfdump
elif [ -f /opt/homebrew/llvm/bin/llvm-dwarfdump ]; then
DWARFDUMP=/opt/homebrew/llvm/bin/llvm-dwarfdump
else
# some systems may have the major LLVM version suffixed on the LLVM binaries - and we need `true` at the end because the whole script will fail with a nonzero return if something goes wrong here
DWARFDUMP=`which llvm-dwarfdump || find ${PATH//:/\/ } -name 'llvm-dwarfdump*' 2>/dev/null | head -n1 || true`
2022-06-16 03:29:45 +00:00
if [[ "${DWARFDUMP}" == "" ]]; then
echo "llvm-dwarfdump not found"
2022-06-16 03:29:45 +00:00
fi
fi
2022-12-25 16:46:32 +00:00
if [[ "$1" == "release" ]]; then
OUTPUTDIR=../target/wasm32-unknown-unknown/release/pkg
INPUTDIR=../target/wasm32-unknown-unknown/release
# Path to, but not including, the cargo workspace ("veilid")
WORKSPACE_PARENT=$(dirname $(dirname $(cargo locate-project --workspace --message-format=plain)))
# Do not include said path in wasm blob output
RUSTFLAGS="--remap-path-prefix=$WORKSPACE_PARENT=/home/user $RUSTFLAGS"
# Do not include user home directory in wasm blob output
RUSTFLAGS="--remap-path-prefix=$HOME=/home/user $RUSTFLAGS"
# Explicitly mark RUSTFLAGS as an environment variable, so it's passed to cargo
export RUSTFLAGS
2022-12-25 16:46:32 +00:00
cargo build --target wasm32-unknown-unknown --release
mkdir -p $OUTPUTDIR
wasm-bindgen --out-dir $OUTPUTDIR --target web --weak-refs $INPUTDIR/veilid_wasm.wasm
2022-12-25 16:46:32 +00:00
wasm-strip $OUTPUTDIR/veilid_wasm_bg.wasm
else
2022-03-17 14:31:10 +00:00
OUTPUTDIR=../target/wasm32-unknown-unknown/debug/pkg
INPUTDIR=../target/wasm32-unknown-unknown/debug
2023-08-22 17:19:59 +00:00
RUSTFLAGS="-O -g $RUSTFLAGS" cargo build --target wasm32-unknown-unknown
2022-03-17 14:31:10 +00:00
mkdir -p $OUTPUTDIR
wasm-bindgen --out-dir $OUTPUTDIR --target web --weak-refs --keep-debug --debug $INPUTDIR/veilid_wasm.wasm
2022-06-16 03:29:45 +00:00
./wasm-sourcemap.py $OUTPUTDIR/veilid_wasm_bg.wasm -o $OUTPUTDIR/veilid_wasm_bg.wasm.map --dwarfdump $DWARFDUMP
2022-06-30 02:17:19 +00:00
# wasm-strip $OUTPUTDIR/veilid_wasm_bg.wasm
2022-03-15 13:33:34 +00:00
fi
2022-03-17 14:31:10 +00:00
popd &> /dev/null
2022-12-25 16:46:32 +00:00
# Print for use with scripts
2023-08-22 17:19:59 +00:00
echo SUCCESS:OUTPUTDIR=$(get_abs_filename $OUTPUTDIR)