DragonFlyBSD Kernel Audit
DF-0725 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0725 build script — exact, runnable, self-contained.
set -e
cd "$(dirname "$0")"
echo "+ cc -O2 -o race_destroy race_destroy.c"
cc -O2 -o race_destroy race_destroy.c
echo "BUILD_OK"
ls -l race_destroy