DESC="Check if executable is at the right place"
main(){
	if [ ! \( \( -x ${AGCC} \) -o \( -x ${AGCC}.exe \) \) ];then
		ERR_MSG="Executable '${AGCC}' not found";
		return 0;
	else
		return 1;
	fi;
}
