-
Notifications
You must be signed in to change notification settings - Fork 4
@rpath
-
Runpath search Paths: dyld 搜索路径
运行时
@rpath
指示dylb
按顺序搜索路径列表, 以找到动态库。@path
保存一个或多个路径的变量谁链接当前的动态库,谁来提供
@rpath
, 相当于环境变量,由链接的对象来提供
install_name_tool -id @rpath/动态库从属资源的路径 动态库文件路径
以 链接framework动态库 为例
在其制定一个绝对路径成功运行基础上,没有重新进行过编译,在原有生成动态库、可执行文件基础上使用
install_name_tool
设置rpath
test.m
编译成test.o
文件后来链接动态库TestExample
-
目录结构
. ├── Frameworks │ └── TextExample.framework │ ├── Headers │ │ └── TestExample.h │ ├── TestExample │ ├── TestExample.m │ └── build.sh ├── build.sh └── test.m
-
动态库的
rpath
-
那么设置动态库路径的完整命令应该是
install_name_tool -id @rpath/Frameworks/TextExample.framework/TestExample/Users/shenyj/framework动态库/Frameworks/TestExample.framework/TestExample
-
这样就与实际开发中用到的动态库路径一致了
❯ otool -l TestExample | grep 'ID' -B 5 -A 5 maxprot 0x00000001 initprot 0x00000001 nsects 0 flags 0x0 Load command 4 cmd LC_ID_DYLIB cmdsize 80 name @rpath/Frameworks/TextExample.framework/TestExample (offset 24) time stamp 1 Thu Jan 1 08:00:01 1970 current version 0.0.0 compatibility version 0.0.0 -- extreloff 0 nextrel 0 locreloff 0 nlocrel 0 Load command 9 cmd LC_UUID cmdsize 24 uuid 751402DD-EBFE-36BD-9D78-C918909190BD Load command 10 cmd LC_BUILD_VERSION cmdsize 32
-
再来对比一下
RxSwift
动态库name
的信息TestExample (自己的包装的动态库) RxSwift (真实项目中生成的) name @rpath/Frameworks/TextExample.framework/TestExample (offset 24) @rpath/RxSwift.framework/RxSwift (offset 24)
-
-
test
执行文件的rpath
install_name_tool -add_rpath /Users/shenyj/framework动态库 test
前面绝对路径成功运行的前提是动态库和执行文件中的
rpath
一一对应了, 既然这里又重新修改了动态库的路径,现在再去给先前链接后的可执行文件添加一个rpath
动态库的
rpath
从Frameworks
文件夹开始,可执行文件为动态库补全rpath
的路径-
查看
test
可执行文件的LC_RPATH
(即当前可执行文件下配置过的rpath
)❯ otool -l test | grep 'RPATH' -A 5 cmd LC_RPATH cmdsize 144 path /Users/shenyj/framework动态库 (offset 12)
在添加之前,输出为空
这样可执行文件的rpath
+ 动态库的rpath
就是一个完整的路径了
-
-
无需重新编译链接,在
lldb
环境下直接运行❯ lldb -file test (lldb) target create "test" Current executable set to '/Users/shenyj/framework动态库/test' (x86_64). (lldb) r Process 91954 launched: '/Users/shenyj/framework动态库/test' (x86_64) 2022-02-11 22:49:37.169603+0800 test[91954:3729185] TestExample---- 2022-02-11 22:49:37.169938+0800 test[91954:3729185] testApp---- Process 91954 exited with status = 0 (0x00000000)
在给
test
可执行文件添加rpath
时,前面仍然是个绝对路径,除此方式外, 系统还提供了两个路径
ShenYj.github.io - 简书地址 - 返回首页
-
Apple
Common
蓝牙
LBS
音视频
- AVAudioSessionchange_route
- 切换线路
- StreamingKit
- Audio Unit 基础
OC 与 Swift 混编
Object-C
- 代码混淆
- autoreleasepool
- 忽略编译器(clang)警告
- 定时器
- 锁
- RunLoop
- block
- NS_REFINED_FOR_SWIFT
- NS_CLOSED_ENUM
- NS_TYPED_ENUM、NS_STRING_ENUM
- NS_TYPED_EXTENSIBLE_ENUM、NS_EXTENSIBLE_STRING_ENUM
- 关键字nonnull和nullable
- class、objc_getClass和object_getclass方法区别
- isKindOfClass和isMemberOfClass
- 应用程序的加载
- non-lazy classes & lazy classes
- load方法
- initialize方法
- 方法的本质
- 类型编码
- self和super
- 类的内存分析
Swift
- precondition
- 权限控制
- Array常用Api
- String初始化、定义
- String常用Api
- String截取演练
- Set定义、创建
- Set访问和修改
- Dictionary操作
- Dictionary和KeyValuePairs
- Dictionary与String转换
- 常用高阶函数
- enum原始值
- enum关联值
- enum遍历
- 递归enum
- enum内存分配
- 指针
- for循环
- break跳出循环
- 变量名与关键字冲突
- 类的定义
- 类的继承和初始化
- 关键字: final
- 关键字: mutating
- 关键字: lazy
- 修饰类方法的关键字: static
- 关键字: final、dynamic、objc和_dynamicReplacement
- 关键字:@dynamicMemberLookup和@dynamicCallable
- 关键字: propertyWrapper
- 自定义运算符
- 下标: subscript
- 扩展: extension
- 协议: protocol
- 协议和扩展
- 为什么需要泛型
- 泛型函数定义
- 泛型类型
- 泛型的类型约束
- 关联类型
- 为泛型定义要求
- 泛型下标
- 多线程
- Attributes
- 错误处理
- Codable
- DispatchSourceTimer
- Swift 5.x 演练: 更多功能编辑页
- Swift 5.x 类库收集
- 单元测试笔记
- 实例对象内存结构
- 元类型、Type、Self
- frozen
- convention
- Swift(5.3.2)源码编译
- SQLite.Swift类库演练
- Swift 5.5 关键字: async/await
- Swift 5.5 新特性: Continuations
- Swift 5.5 新特性: Actor
- Swift 方法调度
- Swift Mirror
- Swift 关键字: @_silgen_name
- Swift 关键字: @_disfavoredOverload
- swiftmodule
- Swift 5.6 新特性: Type placeholders
- Swift 5.6 新特性: #unavailable
- Swift 5.6 新特性: CodingKeyRepresentable
- Swift 5.6 新特性: existential any
- Swift 5.7 新特性: if-let/guard 语法简化
- Swift 5.7 新特性: Multi-statement closure type inference
- Swift 5.8 新特性: @backDeployed
- Swift 5.9 新特性: if switch expressions
- Swift 6.0 新特性:@preconcurrency
RxSwift
macOS - AppKit
-
iOS Assembly(ARM64)
-
C++
C++ 基础
- cout、cin
- 函数重载
- 默认参数
- extern "C"
- pragma once
- inline function
- const
- Reference
- 汇编
- 类和对象
- 堆空间内存管理
- Constructor
- Destructor
- 成员变量初始化
- 声明与实现分离
- namespace
- 继承
- 访问权限
- 初始化列表
- 多态:虚函数
- 多态:虚函数实现原理
- 多态:虚析构函数
- 多态:纯虚函数
- 多态:抽象类
- 多继承
- static
- static: 单例模式
- const 成员
- 引用类型成员
- 拷贝构造函数
- 调用父类的拷贝构造函数
- 浅拷贝、深拷贝
- 对象型参数和返回值
- 匿名对象
- 隐式构造
- 编译器自动生成的构造函数
- 友元
- 内部类
- 局部类
- 运算符重载
- 模板
- 类型转换
- C++标准
- Lambda
- 异常
- 智能指针
-
Flutter
Dart
Flutter
-
Go
Go 基础
-
Ruby
Ruby 基础
-
React-Native
React-Native
-
工具篇
-
Swift Package Manager
-
自动化
-
TroubleShooting
-
扩展