结论:已将核心 LinuxCNC interpreter 源接入 standalone native 编译链接路径,移除 minimal runtime 中的手写 convert_g 行为,并通过 native probe 验证。
8 lines
158 B
Bash
Executable File
8 lines
158 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
PORT="${1:-8011}"
|
|
|
|
python3 -m http.server "$PORT" --directory "$ROOT_DIR"
|