configure: error: cannot guess build type;you must specify one

这篇具有很好参考价值的文章主要介绍了configure: error: cannot guess build type;you must specify one。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

该问题一般出现在国产平台,从错误描述来看,意思是:无法猜测build类型,你必须指定一个。

configure: error: cannot guess build type;you must specify one

解决办法:

1. 在系统/usr路径下搜索 config.guess 和 config.sub 这两个文件。

2. 在当前编译工具目录下同样搜索 config.guess 和 config.sub 这两个文件。

3. 用系统的 config.guess 和 config.sub 文件替换当前编译工具目录下的这两个文件。

4. 重新执行configure。文章来源地址https://www.toymoban.com/news/detail-511129.html

到了这里,关于configure: error: cannot guess build type;you must specify one的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包赞助服务器费用

相关文章

  • Android构建出现的问题?You must specify a URL for a Maven repository.

    构建失败? 我出现这个问题的时候是想要使用谷歌的webrtc拿不到,然后我就去看了阿里的镜像,欸嘿,可以。 阿里巴巴镜像:maven镜像_maven下载地址_maven安装教程-阿里巴巴开源镜像站 我的settings.gradle文件是这样的: 另外在项目里我是这样然后你在 ; 有空我出一期使用And

    2024年02月12日
    浏览(7)
  • (pyqt)Error: one input ui-file must be specified

    (pyqt)Error: one input ui-file must be specified

    我用同样的方法转jiance.ui和first.ui都没问题,但是转shexiangtou .ui就报错。 解决办法:ui命名错误,后面加了个空格,删除空格就好了!!!

    2024年02月04日
    浏览(7)
  • Python PyUIC Error: one input ui-file must be specified

    Python PyUIC Error: one input ui-file must be specified

    这个问题的出现是将desinger中的ui界面转换成代码是出现的错误,如图 这个错误有两种情况,网上博客大部分提到了第一种,有关配置的问题,PyUIC的配置出现错误,有很多很多博客细节的讲解了这个问题,我这里展示一下两种配置方法,都是可以用而且没问题的 第二种 这种

    2024年02月08日
    浏览(7)
  • You may need an appropriate loader to handle this file type, currently no loaders are configured to

    You may need an appropriate loader to handle this file type, currently no loaders are configured to

    代码从git仓库拉的最新代码,下载node_module依赖包无法运行,以前已经下载的依赖包可以运行。 原因: “@vueuse/head”: “^0.7.5”, 指的是 version 与version兼容 ,与2.3.1版本兼容,相当于2.X.X, 即=2.3.1 3.0.0,不改变大版本号。 也就是说看着是0.7.5,但是有更新的话就会下载 大于0.7

    2024年02月10日
    浏览(9)
  • Nginx警告could not build optimal types_hash, you should increase either types_hash_max_size: 2048解决方案

    现象 今天在服务器上新装了一个Nginx,做了相关配置之后,验证配置时,报警告如下: 为了方便阅读,给手动换行了。 我哪见过这种场面呀,不过试了一下,虽然出现警告,但是Nginx启动没有问题。 但这个警告真的是碍眼,还是要解决掉。 解决方法 编辑Nginx配置文件, /e

    2024年02月14日
    浏览(6)
  • configure: error: C compiler cannot create executables错误解析

    一. 前言         在编译开源软件的时候,有时会遇到\\\"configure: error: C compiler cannot create executables\\\"的错误,表示不能生成可执行文件。本文以编译curl-7.40.0为例,模拟出这种错误,并讲解解决这种错误的方法。错误输出如下: [root@192 curl-7.40.0]# ./configure LIBS=-lopenssl checking whet

    2024年02月13日
    浏览(10)
  • | ERROR: [2] bootstrap checks failed. You must address the points described in the following [2] lin

    elasticsearch启动报错: [1]: max file descriptors [65535] for elasticsearch process is too low, increase to at least [65536] 编辑 /etc/security/limits.conf,追加以下内容; 此文件修改后需要重新登录用户,才会生效 [2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] 编辑 /etc/sysctl.c

    2024年02月11日
    浏览(5)
  • nginx报错[error] CreateFile() failed The system cannot find the file specified

    无论是 nginx -s stop 还是 nginx -s reload 命令,都会出现这个错误。 解决方法:使用命令创建/logs/nginx.pid文件 ,命令如下所示 之后 还是有问题,就想起网上看过的另一篇博文,把logs文件夹下的文件全部都删除了,再执行,发现生成了.pid文件,之后就可以运用命令行了。 值得一

    2024年02月11日
    浏览(8)
  • nginx报错:./configure: error: SSL modules require the OpenSSL library. You can either

    nginx报错:./configure: error: SSL modules require the OpenSSL library. You can either 在nginx中配置监听443端口后重新加载配置文件出现此报错, 原因:未安装 ngx_http_ssl_module 模块 解决方法:

    2024年02月05日
    浏览(11)
  • OpenStack+Ceph集群 计算节点执行nova list提示ERROR (CommandError): You must provide a user name/id

    排错的时候在计算节点执行了 nova list 查看实例情况 结果提示 看来是没有配置keystone鉴权信息的原因 执行 可以打印信息了,虽然还是ERROR的…

    2024年02月11日
    浏览(7)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包