DragonFlyBSD Kernel Audit
DF-0776 / build.sh
← back to finding ↓ download raw
#!/bin/sh
# DF-0776 build script.
set -e
cd "$(dirname "$0")"
echo "[*] building craft_img (image forger) + icrc32 ..."
cc -O2 -o craft_img craft_img.c icrc32.c
echo "[*] building harness (production OOB proof) ..."
cc -O2 -o harness harness.c
echo "[+] build OK"
ls -l craft_img harness