문제

I recently installed gcc 4.9, with a previous version of gcc that was installed by default before.

When I type gcc, the previous version of gcc runs. How could I make my newly installed gcc 4.9 run when I type gcc?

도움이 되었습니까?

해결책

You should do this:

cd /usr/bin
mv gcc gcc-old
ln -s gcc-4.9 gcc

Or you should have a look to gcc_select

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top