1 2 3 4 5 6 7
#!/bin/sh # build.sh — compile the DF-0829 trigger PoC. # Run on the DragonFly guest (as any user; cc is base-system gcc 8.3). set -e cd "$(dirname "$0")" cc -Wall -O0 -o poc poc.c echo "build: poc ready"