ld: warning: directory not found for option ''
iOS开发中经常遇到这样的警告,如图所示:

原因是存在未用到的目录。
解决方法:选择Build Settings,找到Search Paths中的Library Search Paths,如下图

删除没用到的路径就行了

PS:这些只是警告,并不影响正常编译运行,只是看起来有点不爽。
ld: warning: directory not found for option ''的更多相关文章
- ld: warning: directory not found for option 去掉警告的方法
		工程老是提示ld: warning: directory not found for option:xxxxxx 这种提示,通常是由于添加了第三方SDK,但是后来改了个名字或者去掉了SDK,但是在 B ... 
- iOS - 解决警告“ld: Warning: Directory Not Found for Option”
		有时候我们可能从项目中删除了某个目录.文件以后,编译出现警告信息: ld: warning: directory not found for option“XXXXXX” 具体类似下图: 很奇怪,为什 ... 
- 解决警告“ld: warning: directory not found for option
		因为已经把文件编译到项目中,删除的话会出现找不到文件或文件夹的警告. 1选择工程, 编译的 (targets) 2选择 Build Settings 菜单 3查找 Library Search Pat ... 
- 解决ld: warning: directory not found for option警告
		去掉警告的办法如下: 1选择工程, 编译的 (targets) 2选择 Build Settings 菜单 3查找 Library Search Paths 和 Framework Search Pa ... 
- 去掉xcode编译warning:ld: warning: directory not found for option '
		tyle="margin:20px 0px 0px; font-size:14px; line-height:26px; font-family:Arial; text-align:left ... 
- 去掉xcode编译warning:ld: warning: directory not found for option '-L
		选择工程, 编译的 (targets) 选择 Build Settings 菜单 查找 Library Search Paths 和 Framework Search Paths, 删掉编译报warn ... 
- ld: warning: directory not found for option '-F/Users/Jason/Project/xxx'
		解决方法: 选择项目名称----->Targets----->Build Settings----->Search Paths----->Library Search Path ... 
- 【转】解决警告 warning: directory not found for option
		转:http://blog.sina.com.cn/s/blog_6f72ff900101es6x.html 解决方法: 选择项目名称----->Targets----->Build Se ... 
- 解决警告 warning: directory not found for option
		解决方法: 选择项目名称----->Targets----->Build Settings----->Search Paths----->Library Search Path ... 
随机推荐
- Android前沿技术
			一.热升级Tinker源码解析与手写二.热修复阿里百川Sophix内核原理三.App Instantgoogle8.0 类似热更新技术原理与实战四.强制更新1.银行应用非对称加密对称加密五.组件化框架 ... 
- 【】input中 type=number  去掉箭头
			css中设置: input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: non ... 
- 性能监控: SPF4J介绍
			1. 总体介绍 性能测试是一项在软件生命开发周期中总是被置于最后一环的活动.我们经常依靠 Java profilers 去帮助发现性能问题. 在这篇文章中,我们将会学习关于 Java 的简单性能测试框 ... 
- python logging模块使用总结
			目录 logging模块 日志级别 logging.basicConfig()函数中的具体参数含义 format参数用到的格式化信息 使用logging打印日志到标准输出 使用logging.base ... 
- epoll使用详解:epoll_create、epoll_ctl、epoll_wait、close
			epoll - I/O event notification facility 在linux的网络编程中,很长的时间都在使用select来做事件触发.在linux新的内核中,有了一种替换它的机制,就是 ... 
- Linux 操作系统及其组成,shell命令
			Linux 操作系统及其组成 操作系统的作用 操作系统(OS)是管理计算机硬件与软件资源的计算机程序,同时也是计算机系统的内核与基石.操作系统需要处理如管理与配置内存.决定系统资源供需的优先次序.控制 ... 
- springboot配置文件外置处理
			前言: 在springboot项目中,一般的配置文件都在resource/config下面,它可以以两种方式存在,一种是yml,一种是properties方式. 当运维和开发分开的时候,比如连接mys ... 
- 前端从零开始学习Graphql
			学习本姿势需要电脑装有node,vue-cli相关环境,以及要有node,express,koa,vue相关基础 本文相关demo的github地址: node服务:https://github.co ... 
- ServiceFabric极简文档-3. 发布脚本
			web: Trap { Write-Host $_.Exception.Message; Continue }; Connect-ServiceFabricCluster Remove-Service ... 
- Jquery UI sortable
			所有的事件回调函数都有两个参数:event和ui,浏览器自有event对象,和经过封装的ui对象 ui.helper - 表示sortable元素的JQuery对象,通常是当前元素的克隆对象 ui.p ... 
