Freetype 安装时提示 make: Nothing to be done for `unix'

混江龙づ霸主 提交于 2020-03-11 13:44:14

 

[Software-Freetype] Freetype 安装时提示 make: Nothing to be done for `unix'  

官网下载的第三方软件包,编译安装会报以下错误,解决办法如下:

 

第一种:
make: Nothing to be done for `all' 解决方法

1.这句提示是说明你已经编译好了,而且没有对代码进行任何改动。

若想重新编译,可以先删除以前编译产生的目标文件:
make clean
然后再
make

实在不行就:
#ldconfig
上面所说的方法并不能解决题目上的错误,看下面的方法。
 
第二种方法:
make: Nothing to be done for `unix'.
 
centos5.8下安装freetype出错处理
 
configure: creating ./config.status 
config.status: creating unix-cc.mk 
config.status: creating unix-def.mk 
config.status: creating freetype-config 
config.status: creating freetype2.pc 
config.status: creating ftconfig.h 
  www.2cto.com  
FreeType build system -- automatic system detection 
 
make: Nothing to be done for `unix'.
 
处理办法:
 builds/unix在freetype下载解压的目录下。
 先进入 builds/unix目录,然后在里边运行./configure命令,运行该命令不会出现上边错误。
#cd  /usr/local/src/freetype-2.5.3/builds/unix
# ./configure --prefix=/usr/local/freetype --enable-shared
 
 
 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!