checking whether the C compiler works... no configure: error: in `/home/farsight/farsight/feng/day8/jpeg-9e': configure: error: C compiler cannot create executables See `config.log' for more details
时间: 2024-01-27 09:04:46 浏览: 179
"以太网CSMA/CD协议的概率模型分析及性能定量研究"
这个错误提示可能是由于您没有正确安装C编译器导致的。请确认您已经正确安装了C编译器,例如gcc。您可以使用以下命令来检查您的系统是否已经安装了gcc:
```
gcc --version
```
如果您的系统没有安装gcc,请根据您的操作系统选择正确的安装方法进行安装。如果您已经安装了gcc,但是仍然遇到了这个错误,请查看config.log文件,其中可能包含有关错误原因的更多详细信息。
阅读全文