:
set -e
set -x

if [ -f temp.x ] ; then rm temp.x ; fi

if [ "$OS" = "SunOS" ] ; then
    CPP="CC"
elif [ "$OS" = "IRIX64" ] ; then
    CPP="CC -cfront -LANG:std -LANG:bool=ON"
else
    CPP="g++"
fi

$CPP -g FooTest.cpp -o temp.x

temp.x

rm temp.x

