#!/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