kunpengat
故障排除
更新时间:2020/03/24 GMT+08:00
问题一:编译过程中提示“configure: error: cannot guess build type; you must specify one”
现象描述:
编译报错“configure: error: cannot guess build type; you must specify one”,如图1所示。
可能原因:
openldap自带的“config.guess”版本不匹配。
问题解决方案一:指定build平台,方法如下:
./configure --build=arm-linux make depend make -j4
问题解决方案二:更换正确的config.guess方法如下:
yum install automake mv ./build/config.guess ./build/config.guess.bak cp /usr/share/automake-1.16/config.guess build/ ./configure make depend make -j4
父主题: 移植OpenLDAP
