DragonFlyBSD Kernel Audit
DF-2803 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-2803 build (run as root inside the DragonFly guest)
set -e
cd "$(dirname "$0")"
cc -O2 -Wall -o harness harness.c
cc -O2 -Wall -o churn churn.c
cp -f harness churn /tmp/
echo "built: /tmp/harness /tmp/churn"