#!/bin/sh
# DF-1056 build: compile both the ptrace and procfs PoCs.
set -e
cd "$(dirname "$0")"
cc -o leak_fpregs leak_fpregs.c
cc -o procfs_c procfs_c.c
echo "BUILD OK: leak_fpregs, procfs_c"
