#!/bin/sh
# DF-2558 build script
set -e
cd "$(dirname "$0")"
echo "+ cc -O2 -o poc poc.c"
cc -O2 -o poc poc.c
echo "BUILD_EXIT=$?"
ls -l poc
