configure: error: no acceptable C compiler found in $PATH See `config.log' for more details
时间: 2023-11-24 21:40:14 浏览: 248
configure: error: no acceptable C compiler found in $PATH是一个错误信息,意味着在系统的路径$PATH中找不到可接受的C编译器。这通常是因为你的系统缺少C编译器,或者C编译器没有正确安装。你可以通过安装C编译器来解决这个问题。具体来说,你可以使用以下命令安装gcc编译器:
sudo apt-get install gcc
安装完成后,再次运行configure命令,应该就能找到可接受的C编译器了。
相关问题
checking for a BSD-compatible install... ./install-sh -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... no checking whether make supports nested variables... no checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/userdata/bc-1.07.1': configure: error: no acceptable C compiler found in $PATH See `config.log' for more details。这是什么意思
这个错误通常是由于没有安装C编译器或无法找到C编译器而导致的。编译C程序需要使用C编译器来将源代码编译为可执行程序。在您的情况下,configure 脚本无法找到合适的 C 编译器,因此导致了这个错误。
您需要安装一个 C 编译器,例如 gcc。如果您使用的是 Debian 或 Ubuntu 等基于 Debian 的发行版,可以使用以下命令安装 gcc:
```
sudo apt-get install gcc
```
如果您使用的是 Red Hat 或 CentOS 等基于 Red Hat 的发行版,可以使用以下命令安装 gcc:
```
sudo yum install gcc
```
安装完编译器后,您需要将其添加到 $PATH 环境变量中。您可以在终端中输入以下命令,将 gcc 添加到 $PATH 中:
```
export PATH=$PATH:/usr/bin
```
然后再次运行 configure 脚本,应该就可以找到 C 编译器并继续编译了。如果问题仍然存在,查看 config.log 文件,它将提供更详细的错误信息。
configure: error: no acceptable C compiler found in $PATH
这个错误提示表示在你的系统环境变量$PATH中没有找到可用的C编译器。你需要安装一个C编译器才能继续进行编译操作。如果你使用的是Linux系统,可以通过命令行输入以下命令安装gcc编译器:
```
sudo apt-get install gcc
```
如果你使用的是Windows系统,可以安装MinGW或者Cygwin等工具包来获得类Unix系统下的编译环境。安装完毕后,将安装目录添加到系统环境变量$PATH中即可。
阅读全文