14 lines
402 B
Bash
Executable File
14 lines
402 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# LinuxCNC source basis: this link probe runs tooldata_common through the
|
|
# standalone wasm probe compiled from src/emc/tooldata/tooldata_common.cc and
|
|
# the source-basis-checked wasm-safe shims.
|
|
probe=$(./build-linuxcnc-wasm-standalone-probe.sh --mode tooldata-common-link)
|
|
|
|
"$probe"
|
|
|
|
echo "linuxcnc wasm tooldata_common link probe passed"
|