zoukankan      html  css  js  c++  java
  • Cocos2d-x iOS Mac环境编译出错 can't locate file for: -lpng -ljpeg -ltiff -lwebp -lfreetype -lwebsockets -lcurl

    在Mac上用Xcode6编译错误,在windows下面Visual Studio 编译没问题,然后查看报错信息:

    error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool:
    can't locate file for
    file: -lpng is not an object file (not allowed in a library)
     1 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't locate file for: -lpng
     2 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: -lpng is not an object file (not allowed in a library)
     3 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't locate file for: -ljpeg
     4 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: -ljpeg is not an object file (not allowed in a library)
     5 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't locate file for: -ltiff
     6 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: -ltiff is not an object file (not allowed in a library)
     7 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't locate file for: -lwebp
     8 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: -lwebp is not an object file (not allowed in a library)
     9 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't locate file for: -lfreetype
    10 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: -lfreetype is not an object file (not allowed in a library)
    11 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't locate file for: -lwebsockets
    12 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: -lwebsockets is not an object file (not allowed in a library)
    13 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't locate file for: -lcurl
    14 error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: -lcurl is not an object file (not allowed in a library)

    原因其实很简单,就是Cocod2d-x的Mac和iOS静态库没有搜索到,

    一般是使用svn客户端没有正确上传.a导致的,

    解决方法:把找到对应版本的Cocod2d-x相应目录下面的.a文件复制到相应目录下,

    然后把.a的静态库添加到svn的版本控制里面;

    使用命令 

    svn add  路径/静态库.a 

    iOS的库文件路径如下:

    /opt/cocos2d-x-3.2> find . -type  f | grep -i ios/lib
    ./external/curl/prebuilt/ios/libcurl.a
    ./external/freetype2/prebuilt/ios/libfreetype.a
    ./external/jpeg/prebuilt/ios/libjpeg.a
    ./external/lua/lua/prebuilt/ios/liblua.a
    ./external/lua/luajit/prebuilt/ios/libluajit.a
    ./external/png/prebuilt/ios/libpng.a
    ./external/tiff/prebuilt/ios/libtiff.a
    ./external/webp/prebuilt/ios/libwebp.a
    ./external/websockets/include/ios/libwebsockets.h
    ./external/websockets/prebuilt/ios/libwebsockets.a
    ./plugin/plugins/flurry/proj.ios/libFlurry.a
    ./plugin/plugins/umeng/proj.ios/libMobClickLibrary.a
  • 相关阅读:
    异步调用WCF的方法需要小心的地方
    常用处理字符串的SQL函数
    SQL分页的几种方式
    初学WCF需要注意的地方
    关于搭建Session服务器(转载)
    PowerDesigner通过SQL语句生成PDM文件并将name和comment进行互相转换
    VMware15安装Centos7超详细过程
    sql server死锁查询及清理
    html 灯笼
    相机曝光与增益
  • 原文地址:https://www.cnblogs.com/changbiao/p/4178667.html
Copyright © 2011-2022 走看看