13 lines
341 B
Bash
Executable File
13 lines
341 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# LinuxCNC source basis: src/emc/pythonplugin/python_plugin.cc and
|
|
# python_plugin.hh define the PythonPlugin API covered by this wrapper.
|
|
probe=$(./build-linuxcnc-wasm-standalone-probe.sh --mode python-plugin-link)
|
|
|
|
"$probe"
|
|
|
|
echo "linuxcnc wasm python_plugin link probe passed"
|