DF-0894 / build.sh
#!/bin/sh # DF-0894 build.sh — exact build command for the PoC sources. # Run as root IN THE GUEST. set -e cd "$(dirname "$0")" echo "=== building craft_img ===" cc -o craft_img craft_img.c echo "=== building harness ===" cc -o harness harness.c echo "=== build OK ===" ls -l craft_img harness |