DragonFlyBSD Kernel Audit
DF-0046 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
#!/bin/sh
# DF-0046 build: compile both the trigger PoC and the supplementary fix test.
set -e
cd "$(dirname "$0")"
cc -o sem_wrap sem_wrap.c
cc -o fix_test fix_test.c
echo "built: sem_wrap, fix_test"