解决办法:configure: error: C compiler cannot create executables错误

简介: 解决办法:configure: error: C compiler cannot create executables错误

  本脑残庞大的编译系统,突然出错,而且莫名其妙:

checking whether the C compiler works... no
configure: error: in `。。。。。。':
configure: error: C compiler cannot create executables
See `config.log'

  大哥,吾这是招你惹你了?网上搜索了一些文章,没用。有一篇文章说是缺少了东西,要看config.log。怎么办?别的招法不灵,那就看吧。


    向上翻,略过一些类似警告的东西,看到一句:


    /usr/bin/ld; cannot find /usr/lib64/libc_nonshared.a


    搜索,果然没有。另外一台机器上搜索,有。复制过来,编译成功!



    那么这个文件怎么丢失的?真不知道。


 


目录
相关文章
|
6月前
|
测试技术 iOS开发 Perl
废弃第三方库导致的library not found for -lXXXXX(linker command failed ) 完美解决方法
废弃第三方库导致的library not found for -lXXXXX(linker command failed ) 完美解决方法
100 0
关于 CMake编译出出现错误“Could not find compiler set in environment variable RC:” 的解决方法
关于 CMake编译出出现错误“Could not find compiler set in environment variable RC:” 的解决方法
关于 CMake编译出出现错误“Could not find compiler set in environment variable RC:” 的解决方法
|
Java
解决办法:Invalid Gradle JDK configuration found
解决办法:Invalid Gradle JDK configuration found
589 1
解决办法:configure: error: C compiler cannot create executables错误
解决办法:configure: error: C compiler cannot create executables错误
618 0
|
iOS开发
编译OpenJDK8报错:configure: error: Failed to determine Xcode version.
编译OpenJDK8报错:configure: error: Failed to determine Xcode version.
112 0
configure: error: C compiler cannot create executables
configure: error: C compiler cannot create executables
323 0
编译OpenJDK8:configure: error: Could not find all X11 headers
编译OpenJDK8:configure: error: Could not find all X11 headers
158 0
|
Android开发
INSTALL_FAILED_TEST_ONLY的解决办法
INSTALL_FAILED_TEST_ONLY的解决办法
234 0
|
移动开发 Linux Shell
$‘\r‘: command not found的解决方法
在Linux系统中,运行Shell脚本,出现了如下错误: one-more.sh: line 1: $'\r': command not found 1 出现这样的错误,是因为Shell脚本在Windows系统编写时,每行结尾是\r\n,而在Linux系统中行每行结尾是\n,所以在Linux系统中运行脚本时,会认为\r是一个字符,导致运行错误。
1359 0