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。这是什么意思
时间: 2023-12-22 21:13:49 浏览: 266
centos6.x 安装升级glibc2.17 gcc-4.8.2
这个错误通常是由于没有安装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 文件,它将提供更详细的错误信息。
阅读全文