使cocopods管理开源库编译出现Library not found for -lPods问题的解

If Xcode complains when linking, e.g. Library not found for -lPods, it doesn‘t detect the implicit dependencies:

  • 1.Go to Product > Edit Scheme
  • 2.Click on Build
  • 3.Add the

    Pods

    static library, and make sure it‘s at the top of the list

  • 4.Clean and build again
  • If that doesn‘t work, verify that the source for the spec you are trying to include has been pulled from 5.github. Do this by looking in /Pods/. If it is empty (it should not be), verify that the ~/.cocoapods/master//.podspec has the correct git hub url in it.
  • 6.If still doesn‘t work, check your XCode build locations settings. Go to Preferences -> Locations -> Derived Data -> Advanced and set build location to "Relative to Workspace".

时间: 2024-10-11 08:02:11

使cocopods管理开源库编译出现Library not found for -lPods问题的解的相关文章

iOS开发遇到的坑之六--使用cocopods管理第三方库时,编译出现Library not found for -lPods问题的解决方法

在项目中有时候会遇到Library not found for -lPods(这里的IPods指的是你具体的第三方库)的问题 出现这个错误的原因是:xcode在编译的时候找不到这个库,从而导致项目无法编译! 这里给出几种解决办法: 第一种: a) Search from 'Library' from the Target Settings view and double-click to inspect the value of Library Search Paths b) There are

iOS开发遇到的坑之六--使用cocopods管理第三方库时,编译出现Library not found for -lPods问题的解决办法

在项目中有时候会遇到Library not found for -lPods(这里的IPods指的是你具体的第三方库)的问题 出现这个错误的原因是:xcode在编译的时候找不到这个库,从而导致项目无法编译! 这里给出几种解决办法: 第一种: Search from 'Library' from the Target Settings view and double-click to inspect the value of Library Search Paths There are two v

curl开源库编译

环境:Win7+VS2013 1.下载curl的zip包并解压,本文下载的是curl-7.39.0.zip,下载地址:http://curl.haxx.se/download.html 2.打开vs2013的命令行 3.切换到curl的winbuild目录 4.执行命令:nmake /f Makefile.vc mode=static vc=12 debug=no 由上即可生成vs13的release的静态库 同理:vs2010  vs2012 只需要将vc=12 改为10或者11即可

iOS中如何使cocoapods管理第三方库

首先要进行Ruby环境搭建: 具体可以参考一下连接: http://blog.csdn.net/showhilllee/article/details/38398119 cocoapods基本的使用方法: 1.搜索第三方库在pods下支持的版本 例如项目中要是有AFNetWorking 在终端中输入 pod search AFNetWorking,可以查看到AFNetWorking最新的版本. 2.具体使用方法: >cd 到当前项目路径, >执行 vim Podfile,创建Podfile文件

libCURL开源库在VS2010环境下编译安装,配置详解

libCURL开源库在VS2010环境下编译安装,配置详解 转自:http://my.oschina.net/u/1420791/blog/198247 CURL开源库VS2010环境下编译安装,配置详解 一 准备 1.1 CURL官网下载地址:http://curl.haxx.se/download.html 1.2 找到源码包,我这里下载的是7.32.0版:http://curl.haxx.se/download/curl-7.32.0.zip 二 步骤 2.1 打开curl-7.32.0\

CocoaPods:管理Objective-c 程序中各种第三方开源库关联

在我们的iOS程序中,经常会用到多个第三方的开源库,通常做法是去下载最新版本的开源库,然后拖拽到工程中. 但是,第三方开源库的数量一旦比较多,版本的管理就非常的麻烦.有没有什么办法可以简化对第三方库的管理呢?有!在使用SDWebImage这个第三方库的时候,我在学习如何将进度展现时,看到有人提到用CocoaPods(http://cocoapods.org/,需FQ) 来管理第三方开源库. CocoaPods是管理Objective-c 程序中各种第三方开源库关联非常棒的方式,只要安裝好 Coc

人脸检测开源库stasm在VS2010环境下的64位编译

stasm stasm是寻找人脸特征的C++开源库,实现了ASM模型和AAM模型.使用Stasm需要编译好的openCV. 源代码从官网下载. 辅助编译文件(CMakelists等)从这里下载. 电脑操作系统:win7 64 bit 编译方法 1. 将从官网下载的源代码解压至文件夹stasm4.1.0 2. 将辅助编译文件同样复制到文件夹stasm4.1.0下.此步完成后文件夹里内容如下: 3. 打开CMake,输入源文件地址和生成文件存放地址,点configure.示例见下图第1个框 4. 根

使用cocoapods管理第三方开源库

git上的项目基本都可以用cocoapods导入 特别方便. 使用方法: 更新cocoapods : $ sudo gem update cocoapods 查询第三方库是否存在: $ pod search xxx 导入第三方库: 进入项目的根目录,并在根目录下创建一个名叫Podfile的文件(没有任何后缀): $ cd Desktop/CocoaPodsTest/ '进入项目根目录,根据自己项目实际目录'$ touch Podfile $ vim Podfile vim编辑 :wq退出 或者使

开源库evhtp在windows下编译

工作需要搭建基于C++的http服务,最后选择使用evhtp.在linux下的编译参考readme即可.现在重点来说下windows下的编译过程. 代码git地址:https://github.com/criticalstack/libevhtp 编译准备 Visual Studio 必须  笔者用的是VS2019 Libevent2库   必须  git地址:https://github.com/libevent/libevent,libevent的windows版本编译相对简单) CMake