- 论坛徽章:
- 0
|
一个奇怪的问题
Hi,
I am not sure if your gcc is in your PATH. Can you do a \"type gcc\" to see if it returns the complete path to the gcc:
e.g.
# type gcc
gcc is /usr/local/bin/gcc
If you don\'t see the above, but only see \"gcc not found.\", then you need to add the gcc\'s dir to your PATH.
e.g.
# type gcc
gcc not found.
# export PATH=/usr/local/bin PATH
# type gcc
gcc is /usr/local/bin/gcc
But I have looked at the error message you posted again, I am not sure if this is really the problem. Maybe other people can give some suggestions here? |
|