#!/bin/bash
GCC="/usr/bin/gcc"
GCPP="/usr/bin/g++"

if [ ! -z  ]; then
   GCC=$1
fi

if [ ! -z $2 ]; then
   GCPP=$2
fi

/usr/libexec/icecc/icecc-create-env $GCC $GCPP
