./configure --build=编译平台 --host=运行平台 --target=目标平台
1. configure: error: cannot guess build type; you must specify one
解决办法:指定编译平台
./configure --build=arm
2. configure: error: Either a previously installed pkg-config or "glib-2.0 >= 2.16" could not be found. Please set GLIB_CFLAGS and GLIB_LIBS to the correct values or pass --with-internal-glib to configure to use the bundled copy.文章来源:https://www.toymoban.com/news/detail-626394.html
解决办法:使用自带glib,添加参数 文章来源地址https://www.toymoban.com/news/detail-626394.html
./configure --build=arm --with-internal-glib
到了这里,关于在linux中使用 ./configure 时报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!