DragonFlyBSD Kernel Audit
DF-0784 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# DF-0784 build script (runs inside the guest as the unprivileged user).
# Builds both the live trigger and the deterministic harness.
set -e
cd "$(dirname "$0")"
cc -O2 -o readlink_poc readlink_poc.c
cc -O2 -o harness harness.c
echo "BUILD_OK"
ls -l readlink_poc harness