gcc 无法执行 gcc.real:没有此文件或目录

gcc 无法执行 gcc.real:没有此文件或目录
./configure 
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/home/mob/freeglut-2.8.0':
configure: error: C compiler cannot create executables
See `config.log' for more details

other i.e
 gcc --version
Unable to exec gcc.real: No such file or directory

gcc --version
Unable to exec gcc.real: No such file or directory

答案1

您的错误是:

C compiler cannot create executables

这通常可以通过安装来解决构建必需品安装 build-essential

sudo apt-get update && sudo apt-get install build-essential

如果此后问题仍然存在,请编辑你的问题显示错误消息和完整准确的输出./configure

答案2

好吧...!! 孩子们,我曾经遇到过这个问题,当我尝试使用 ./configure 时遇到任何问题

./configure 
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/home/mob/freeglut-2.8.0':
configure: error: C compiler cannot create executables

有关详细信息,请参阅“config.log”

或者尝试查看我安装了哪个版本的 gcc。

gcc --version
Unable to exec gcc.real: No such file or directory

好吧...!!! 就我而言,解决方案是。

ln -si /usb/bin/gcc-4.6 /usr/bin/gcc 

之后我就可以编译我的系统中的任何程序了。

相关内容