DragonFlyBSD Kernel Audit
DF-0746 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# DF-0746 build — both the buggy transcription and the fixed transcription.
set -e
cd "$(dirname "$0")"
echo "+ cc -O2 -Wall -Wextra -o harness harness.c"
cc -O2 -Wall -Wextra -o harness harness.c
echo "+ cc -O2 -Wall -Wextra -o harness_fixed harness_fixed.c"
cc -O2 -Wall -Wextra -o harness_fixed harness_fixed.c
echo "BUILD_EXIT=0"