发布网友 发布时间:2022-04-22 19:10
共5个回答
热心网友 时间:2023-10-25 19:30
有错会退出,会在当前目录下生成 config.log ,vim 可直接查看.
附:
[root@s02 csft-3.1]# ./configure
checking build environment
--------------------------
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking whether to enable maintainer-specific portions of Makefiles... no
checking for python... /usr/bin/python
checking for python version... 2.6
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.6/site-packages
checking for python extension mole directory... ${exec_prefix}/lib/python2.6/site-packages
checking for compiler programs
------------------------------
checking whether to compile debug version... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details. #这里会有提示的
[root@02 csft-3.1]#
热心网友 时间:2023-10-25 19:31
第一会产生错误日志。
第二有问题,会直接退出,当前就可以看到错误信息。
第三会有错误提示。
也可以重定向到指定文件后,再查看。
热心网友 时间:2023-10-25 19:31
一般有错的话会有错误提示的,会产生错误日志,或者会直接退出,当前就可以看到错误信息。当然也可以重定向到指定文件后,再查看。查看命令可查询“Linux命令大全”。
热心网友 时间:2023-10-25 19:32
可以所有的输出内容重定向到日志里保存,查看. ./configure > configure.log 2>&1
热心网友 时间:2023-10-25 19:32
有错会退出的.
一般configure过程会生成一个日志文件,可以 检查这个日志文件.