`
lym6520
  • 浏览: 707475 次
  • 性别: Icon_minigender_1
  • 来自: 福建
社区版块
存档分类
最新评论

执行./configure命令的时出现的错误

阅读更多

执行./configure命令的时候,出现以下错误:
错误一:configure: error: no acceptable C compiler found in $PATH

原因:c编译器的相关package没有安装
解决办法:安装gcc

可用通过命令:
#yum install gcc
来安装gcc


错误二:configure: error: C++ preprocessor "/lib/cpp" fails sanity check

原因:c++编译器的相关package没有安装
解决办法:安装g++

可用通过以下命令执行安装:
# yum install glibc-headers
# yum install gcc-c++

分享到:
评论

相关推荐

    ffmpeg 4.2.0和ffmpeg2.6.1,并有txt文档安装说明。./configure。亲测可用

    `./configure` 是FFmpeg编译过程中的一个重要步骤,它是GNU autotools的一部分,用于配置源代码以适应不同的操作系统和硬件平台。通过运行`./configure`,你可以指定编译选项,如是否启用某些特性、选择编译器以及...

    centos 6.9 安装freeswitch 1.6.18

    当运行 `./configure` 并执行 `make` 命令时,可能会遇到以下错误: ```bash make[4]: Entering directory `/usr/local/src/freeswitch-1.6.18/src/mod/applications/mod_fsv' Makefile:797: *** You must ...

    qt环境安装

    解压后,进入解压后的目录,执行`./configure`命令。这个命令会根据系统的配置自动检测并设置编译选项。在执行此命令时,可能会遇到找不到`g++`编译器的情况。此时,可以通过运行`apt-get install g++`来安装`g++`,...

    基于linux离线安装nginx的全包,及安装流程命令说明

    ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-pcre make && make install ``` 5. 安装完成后,启动Nginx服务: ```bash /usr/local/nginx/sbin/nginx ``` 二、lua-resty集成 lua...

    Linux下SVN服务器安装配置及客户端安装说明[定义].pdf

    使用 ./configure 命令配置 SVN 服务器,例如:./configure --prefix=/usr/local/svn。这个命令将检查安装平台和目标特征,并指定安装目录。 6. 安装 OpenSSL 在配置 SVN 服务器时,可能会出现错误,提示需要安装 ...

    svn资料大全 小白安装

    ./configure --prefix=/usr/local/zlib make make install’ 2、安装openssl tar zvxf openssl-0.9.8l.tar.gz cd cd openssl-0.9.8l ./config --prefix=/usr/local/ssl-0.9.8l shared zlib-dynamic enable-camellia...

    Linux安装MySQL数据库.pdf

    在执行 ./configure 命令时,可能会出现错误,例如 No curses/termcap library found,可以使用 yum 命令安装 ncurses-devel 包来解决该错误。 三、安装 使用 make 命令编译和安装 MySQL。在编译过程中,可能会...

    squid编译安装及配置详解.pdf

    4. 编译安装 Squid:使用 configure 命令来配置 Squid,例如 `# ./configure -prefix=/usr/local/squid`,然后使用 make 命令编译 Squid,例如 `# make`,最后使用 make install 命令安装 Squid,例如 `# make ...

    安装linux编译时报apr错误的解决方法

    ./configure --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr make sudo make install ``` 6. **启动httpd**:安装完成后,你可以启动httpd服务,测试是否成功: ```bash sudo /usr/local/apache2/bin/...

    Apache安装与配置[归类].pdf

    2. 进入httpd-2.4.3目录,执行命令`./configure`,但是会出现错误`configure: error: APR not found. Please read the documentation.`。这是因为Apache需要关联软件APR的支持。 安装APR 1. 下载apr-1.4.6.tar.gz...

    ubuntu-version `GLIBC-2.25` not found.pdf

    在configure命令中添加额外的参数,例如: ``` ../configure --prefix=/usr/glibc2.25 -I../include/ -include../include/unistd.h -include../include/prctl.h ``` 这些参数确保configure脚本能在正确的目录中...

    Zabbix完整部署文档

    - 注意:libpng的编译不通过`./configure`命令。 - **zlib**: - 配置与编译:`./configure --prefix=/home/zabbix/ext/zlib --enable-shared`。 - 安装:`make && make install`,之后需要复制`zlib.h`头文件到`...

    mhash-0.9.9.9.tar.gz【免费】

    例如,当尝试运行`./configure`脚本时,如果出现错误,可能是因为系统缺少gcc-c++编译器。GCC(GNU Compiler Collection)的C++部分是编译C++源代码所必需的。因此,为了解决这个问题,用户需要通过`yum install gcc...

    一步步写嵌入式操作系统.zip

    下载并解压skyeye 1.2.6_rc1的代码, ~/Downloads/skyeye-1.2.6_rc1 根据执行skyeye-1.2.6_rc1/INSTALL的说明 1 执行 ./configure 2 执行 make 后 编译错误1: In file included from /usr/include/fcntl.h:289:0, ...

    在SUSE11上的安装subversion1.8.9客户端

    在执行`./configure`时,可能会遇到找不到apr(Apache运行库)的问题。为此,需要去apr.apache.org下载apr-1.5.1.tar.gz和apr-util-1.5.3.tar.gz。解压后,先安装apr,使用`./configure`, `make`, `make install`...

    fdbus编译代码(涉及protobuf编译)-总结

    确保将proto文件生成的.cc文件编译进工程执行文件中,否则会出现未定义符号的错误。 3. CMakeLists中链接protobuf库时,确保正确引用。 - 参考文档: - [FDBUS学习笔记]...

    安装gcc4.8.51

    解压缩下载的GCC源代码包,然后运行`./configure`命令来配置编译选项。在这个例子中,我们指定前缀为`/home/scliyan/hrf/install/gcc-4.8.5`,并启用C和C++语言支持。使用`--enable-languages=c,c++`参数。 ```...

    Ubuntu的apachephpmysql安装.pdf

    - 如果在执行`./configure`时遇到`config.status: error: cannot find input file: 'include/ap_config_auto.h.in'`,这可能是由于之前移动Apache源码目录时遗漏了某些文件。确保所有文件都已正确移动,并重试`./...

    Apache_安装与配置.doc

    运行`./configure`时,如果没有找到关联的APR库,会提示错误。为此,你需要先安装APR库。 接下来,解压缩并安装apr-1.4.6.tar.gz。在apr-1.4.6目录中,使用`./configure --prefix=/usr/local/apr`进行配置。这里的`...

Global site tag (gtag.js) - Google Analytics