码迷,mamicode.com
首页 > 系统相关 > 详细

解决linux64位安装jpeg出错 make:./libtool:Command not found

时间:2016-08-22 10:45:44      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:

首先看有没有安装libtool 及 libtool-ltdl-devel

rpm -qa | grep libtool
#wget:http://ftp.gnu.org/gnu/libtool/libtool-2.2.6a.tar.gz
#tar zxvf ./libtool-2.2.6a.tar.gz
#cd libtool-2.2.6a
#./configure
#make
#make install

然后进入jpeg-6b的源码目录,然后执行以下步骤,切记!COPY到当前目录注意后面的点(.)
网上好多都把config.sub和config.guess的路径弄错了,应该是在/usr/share/libtool/config/下,而不是在/usr/share/libtool/下

#cp /usr/share/libtool/config/config.sub .
#cp /usr/share/libtool/config/config.guess .

也就是把 libtool里面的两个配置文件拿来覆盖掉jpeg-6b目录下的对应文件
make clean 再重新configure(切记必须重新configure,否则仍提示这个错误)

没有权限的时候先建立对应的文件夹,再次make install就行了.

解决linux64位安装jpeg出错 make:./libtool:Command not found

标签:

原文地址:http://www.cnblogs.com/guo18810825802/p/5794612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!