blob: 607c4ea7569f8811e4ab0eecf245b3ccad7f97f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
if ! test "x86_64" = "$(uname -m)"
then
echo "incorrect host for test" 1>&2
exit 1
fi
CC=../../../antcc
CFLAGS="$CFLAGS -lm"
export CC CFLAGS
exec ./runners/single-exec/posix $1
|