DragonFlyBSD Kernel Audit
DF-0813 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
#!/bin/sh
# DF-0813 build: compile the hammer2 churn harnesses (as unprivileged user).
set -e
cd "$(dirname "$0")"
cc -O2 -Wall -o churn_h2 churn_h2.c
cc -O2 -Wall -o dirstress_h2 dirstress_h2.c
echo "BUILD_OK"