This answer essentially unblocked me. Thank you.
Here is what I did.
make a pbin directory.
Create symlinks to egcc, gcc, eg++ & g++ in it
$ ln -sf `which egcc` egcc
$ ln -sf `which egcc` gcc
$ ln -sf `which eg++` eg++
$ ln -sf `which eg++` g++
$ ls -l
total 16
-rw-r--r-- 1 mulander mulander 104 Sep 4 19:38 README.txt
lrwxr-xr-x 1 mulander mulander 19 Sep 4 19:39 eg++ -> /usr/local/bin/eg++
lrwxr-xr-x 1 mulander mulander 19 Sep 4 19:38 egcc -> /usr/local/bin/egcc
lrwxr-xr-x 1 mulander mulander 19 Sep 4 19:39 g++ -> /usr/local/bin/eg++
lrwxr-xr-x 1 mulander mulander 19 Sep 4 19:39 gcc -> /usr/local/bin/egcc
Next add it to path:
$ export PATH=`pwd`/pbin:$PATH
$ gcc --version
gcc (GCC) 4.9.3
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ g++ --version
g++ (GCC) 4.9.3
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Resume porting! 😃