开发者社区> 问答> 正文

Centos7下编译php5.6.19出错,怎么解决??报错

第一次编译安装PHP的时候很顺利,因为要增加freetype,所以要重新编译,结果死活就是无法通过configure。

1. centos7信息

uname -a

Linux dev 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux


2. 运行 ./configure 报错

configure: error: cannot run C compiled programs.
If you meant to cross compile, use `--host'.

3. 运行 grep error config.log

cc: error: unrecognized command line option '-V'
cc: fatal error: no input files
cc: error: unrecognized command line option '-qversion'
cc: fatal error: no input files
conftest.c:9:19: fatal error: stdio.h: No such file or directory
configure:4076: error: in `/usr/local/src/php-5.6.19':
configure:4078: error: cannot run C compiled programs.


  1. 按照网上说的方法 在configure后面加上了 --host=x86_64 ,报错

configure: error: in `/usr/local/src/php-5.6.19':
configure: error: C preprocessor "/lib/cpp" fails sanity check

5. config.log中错误提示,差好几个头文件

cc: error: unrecognized command line option '-V'
cc: fatal error: no input files
cc: error: unrecognized command line option '-qversion'
cc: fatal error: no input files
conftest.c:9:19: fatal error: stdio.h: No such file or directory
configure:4076: error: in `/usr/local/src/php-5.6.19':
configure:4078: error: cannot run C compiled programs.
[root@dev php-5.6.19]# grep error config.log 
cc: error: unrecognized command line option '-V'
cc: fatal error: no input files
cc: error: unrecognized command line option '-qversion'
cc: fatal error: no input files
conftest.c:9:19: fatal error: stdio.h: No such file or directory
conftest.c:9:20: fatal error: stdarg.h: No such file or directory
|    These don't provoke an error unfortunately, instead are silently treated
|    as 'x'.  The following induces an error, until -std is added to get
cc: error: unrecognized command line option '-qlanglvl=extc89'
|    These don't provoke an error unfortunately, instead are silently treated
|    as 'x'.  The following induces an error, until -std is added to get
cc: error: unrecognized command line option '-qlanglvl=ansi'
|    These don't provoke an error unfortunately, instead are silently treated
|    as 'x'.  The following induces an error, until -std is added to get
cc: error: unrecognized command line option '-std'
|    These don't provoke an error unfortunately, instead are silently treated
|    as 'x'.  The following induces an error, until -std is added to get
<command-line>:0:1: error: missing '(' after predicate
conftest.c:9:20: fatal error: stdarg.h: No such file or directory
|    These don't provoke an error unfortunately, instead are silently treated
|    as 'x'.  The following induces an error, until -std is added to get
<command-line>:0:1: error: missing '(' after predicate
conftest.c:9:20: fatal error: stdarg.h: No such file or directory
|    These don't provoke an error unfortunately, instead are silently treated
|    as 'x'.  The following induces an error, until -std is added to get
cc: error: unrecognized command line option '-Xc'
|    These don't provoke an error unfortunately, instead are silently treated
|    as 'x'.  The following induces an error, until -std is added to get
conftest.c:10:21: fatal error: limits.h: No such file or directory
|     Syntax error
conftest.c:10:21: fatal error: limits.h: No such file or directory
|     Syntax error
conftest.c:12:0: fatal error: assert.h: No such file or directory
|     Syntax error
conftest.c:12:0: fatal error: assert.h: No such file or directory
|     Syntax error
conftest.c:10:21: fatal error: limits.h: No such file or directory
|     Syntax error
conftest.c:10:21: fatal error: limits.h: No such file or directory
|     Syntax error
conftest.c:10:21: fatal error: limits.h: No such file or directory
|     Syntax error
conftest.c:10:21: fatal error: limits.h: No such file or directory
|     Syntax error
configure:4478: error: in `/usr/local/src/php-5.6.19':
configure:4480: error: C preprocessor "/lib/cpp" fails sanity check


6. gcc安装信息

[root@dev php-5.6.19]# rpm -qa | grep glibc
compat-glibc-headers-2.12-4.el7.centos.x86_64
glibc-utils-2.17-106.el7_2.4.x86_64
glibc-common-2.17-106.el7_2.4.x86_64
glibc-devel-2.17-106.el7_2.4.x86_64
glibc-static-2.17-106.el7_2.4.x86_64
glibc-2.17-106.el7_2.4.x86_64
glibc-headers-2.17-106.el7_2.4.x86_64
compat-glibc-2.12-4.el7.centos.x86_64

[root@dev php-5.6.19]# gcc -v

Using built-in specs.

<p>
	<span style="line-height:1.5;font-size:10pt;">COLLECT_GCC=gcc</span>
</p>

COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)



展开
收起
爱吃鱼的程序员 2020-06-09 16:24:22 693 0
1 条回答
写回答
取消 提交回答
  • https://developer.aliyun.com/profile/5yerqm5bn5yqg?spm=a2c6h.12873639.0.0.6eae304abcjaIB

    引用来自“山南子”的评论

    yumgroupinstall"DevelopmentTools""LegacySoftwareDevelopment"

    Trytoinstalltheglibc-headerspackageanditsdependencies.


    Acopyof"stdio.h"in"/usr/include".

    yuminstallglibc-develglibc-headers

    引用来自“山南子”的评论

    Trytoinstalltheglibc-headerspackageanditsdependencies.


    Acopyof"stdio.h"in"/usr/include".

    yuminstallglibc-develglibc-headers

    修改CXXFLAGS/CFLAGS/ CPPFLAGS 添加相应的INCLUDES目录-I/usr/include/x86_64-redhat-linux6E

    引用来自“山南子”的评论

    修改CXXFLAGS/CFLAGS/ CPPFLAGS 添加相应的INCLUDES目录-I/usr/include/x86_64-redhat-linux6E

    [root @devphp-5.6.19]#exportCFLAGS="-I/usr/include/x86_64-redhat-linux6E"

    [root @devphp-5.6.19]#exportCPPFLAGS="$CFLAGS"

    [root @devphp-5.6.19]#exportCXXFLAGS="$CFLAGS"

    还是找不到stdio.h

    yumgroupinstall"DevelopmentTools""LegacySoftwareDevelopment"
    2020-06-09 16:24:39
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
阿里云栖开发者沙龙PHP技术专场-深入浅出网络编程与swoole内核-吴镇宇 立即下载
PHP安全开发:从白帽角度做安全 立即下载
PHP 2017.北京 全球开发者大会——高可用的PHP 立即下载