- GNU C 4.3.0
C :
GCCRUN="gcc"
GCCDIR=""
if [ x"${GCCRUN}" = x -o x"${GCCRUN}" = xno ]
then
echo "This language is not supported." >&2
exit 1
fi
if [ x"${GCCDIR}" != x ]
then
PATH="${GCCDIR}:${PATH}"
fi
exec "${GCCRUN}" ${EJUDGE_FLAGS} -Wall -static -s -O2 "$1" -o "$2" -lm
|