DragonFlyBSD Kernel Audit
DF-0878 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0878 build: compile the deterministic harness and the getdents dumper.
# Run as the unprivileged user (maxx) on the DragonFly guest.
set -e
cd "$(dirname "$0")"
cc -O2 -o harness harness.c
cc -O2 -o dumpents dumpents.c
echo "BUILD_OK: harness dumpents"