#!/bin/sh

if g++-4.9 --version >/dev/null 2>&1; then
	prog=g++-4.9
else
	prog=g++-4.8
fi

exec $prog "$@"
