EDIT: So I went ahead and impatiently installed the gcc compiler on the HPC Website. I again ran the command gcc -v and it returned the exact same info. --enable gfortran was NOT included. So I am thinking that the compilers are the same. And I am still getting the same "error trying to exec 'f951': execvp: No such file or directory" error.
You probably have two gccs on your system now the one from Xcode and the one for gfortran. Did you install the gfortran one in /usr/local/bin? If not, substitute the right path.
If so, ether moving /usr/local/bin before /usr/bin in your path e.g.
Code:
export PATH=/usr/local/bin:$PATH
EDIT: You might also be able to set the environment variable CC to the exact path where the "right" gcc is located.
B