zoukankan      html  css  js  c++  java
  • Freetype 安装时提示 make: Nothing to be done for `unix'

    [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
     
     
     
  • 相关阅读:
    《程序员修炼之道+从小工到专家》读后感2
    java在子类中,调用父类中被覆盖的方法
    长按文本全复制
    NSTimer 定时器总结
    对URL编码
    Mysql find_in_set 效率问题
    php 运算符优先级
    使用layui上传控件问题
    xcode11发版一直卡在App Store验证过不去
    iOS13禁用深色模式
  • 原文地址:https://www.cnblogs.com/linux-super-meng/p/4045052.html
Copyright © 2011-2022 走看看