12-26-2015, 06:33 AM
(12-26-2015, 06:24 AM)DaPorkchop Wrote: Yes, no aliases + gcc command = command not found.
I think this shouldn't normally happen. Did you install gcc4.8 from the normal repo?
One way to resolve it is to create a symlink:
Code:
sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.8
sudo ln -s /usr/bin/g++ /usr/bin/g++-4.8
Note that I don't know where your gcc-4.8 is installed, so you may need to modify the `/usr/bin/gcc-4.8` and `/usr/bin/g++-4.8` parts. To easily find where they are, use `whereis gcc-4.8`.