后续探索,基于macOS 10.15.1
版本发布的objc4-781
源码。
但是源码无法直接运行和编译,我们需要搭建可编译环境。
如果想走 快捷通道,可下载Cooci老师的
可编译源码
: 运行objc4-781
版本
开发环境
- macOS 10.15.6
- Xcode 11.7
- objc4-781
下载资源
1. objc4-781源码
下载方法一:
苹果开源源码汇总: https://opensource.apple.com,在macOS -> 10.15.1
版本中,搜索objc4
,直接下载objc4-781
。
下载方法二:
直接地址: https://opensource.apple.com/tarballs/,搜索objc4
。进入,找到objc4-781
并下载。
2. 依赖文件
在苹果开源源码页面,除了lauchd-106.10
需要在macOS -> 10.4.4.x86
版本中下载。 其余均可在macOS -> 10.15.1
版本中搜索到。
3. 编译源码
这是个痛苦的过程,得不断调试和修改源码问题。
打开objc.xcodeproj
,选中objc
target,开始编译:
问题一: unable to find sdk 'macosx.internal'
处理:
-
target -> objc -> build Setings ->Architectures
的BaseSDK
选中macOS 10.15
-
target -> objc-trampolines -> build Setings -> Architectures
的BaseSDK
选中macOS 10.15
问题二:一系列缺失文件的问题
1. 'sys/reason.h' file not found
在下载的依赖文件夹中,找到文件:
xnu-6153.41.3 -> bsd -> sys -> reason.h
在
objc4-781
的根目录下新建HTCommon
文件夹,在HTCommon中创建sys
文件夹,将reason.h
文件拷贝到sys
文件夹中
- 配置
文件索引
路径:
target
->objc
->Build Settings
搜索header_search Paths
, 添加$(SRCROOT)/HTCommon
2.'mach-o/dyld_priv.h' file not found
- 在
HTCommon
文件夹中,创建march-o
文件夹 - 在下载的依赖文件夹中,找到文件:
dyld-733.6 -> include -> mach-o -> dyld_priv.h
,复制到HTCommon/march-o
文件夹中
3. 'os/lock_private.h' file not found
- 在
HTCommon
文件夹中,创建os
文件夹 - 在下载的依赖文件中,找到文件:
libplatform-220 --> private --> os --> lock_private.h 和 base_private.h
,复制到HTCommon/os
文件夹中
4. dyld_priv.h 报了一堆 Expected ',' 错误
- 我们暂时直接移除
bridgeos(3.0)
,世界瞬间安静了
5. lock_private.h 报 Expected ',' 错误
- 继续移除报错的
移除
bridgeos(3.0)`
6. 'pthread/tsd_private.h' file not found
- 在
HTCommon
文件夹中,创建pthread
文件夹 - 找到文件:
libpthread-416.40.3 --> private --> tsd_private.h 和 spinlock_private.h
,复制到HTCommon/pthread
文件夹中
7. 'System/machine/cpu_capabilities.h' file not found
- 在
HTCommon
文件夹中,创建System
文件夹,System文件夹中创建machine
文件夹 - 找到文件:
xnu-6153.41.3 --> osfmk --> machine --> cpu_capabilities.h
,复制到HTCommon/System/machine
文件夹中
8. 'os/tsd.h' file not found
- 找到文件:
xnu-6153.41.3 --> libsyscall --> os --> tsd.h
,复制到HTCommon/os
文件夹中
9. 'System/pthread_machdep.h' file not found
-
在这里下载找到
Libc-583/pthreads/pthread_machdep.h
, 将其复制到HTCommon/System
文件夹。
手动复制吧 😂
在最新版的macOS 10.15中最新版下载的
libc
中没有这个h文件,需要下载Libc-583
版本
10. 'CrashReporterClient.h' file not found
-
在这里复制
CrashReporterClient.h
, 将其复制到HTCommon
文件夹。 - 在
Build Settings
搜索Preprocessor Macros
, 加入:LIBC_NO_LIBCRASHREPORTERCLIENT
11. 'objc-shared-cache.h' file not found
- 找到文件:
dyld-733.6 --> include --> objc-shared-cache.h
,复制到HTCommon
文件夹中
12. pthread_machdep.h文件报了一堆错
- 不要慌,将193行至244行替换以下内容,先运行起来
#if TARGET_IPHONE_SIMULATOR || defined(__ppc__) || defined(__ppc64__) || \
(defined(__arm__) && !defined(_ARM_ARCH_7) && defined(_ARM_ARCH_6) && defined(__thumb__))
#define _pthread_getspecific_direct(key) pthread_getspecific((key))
#define _pthread_setspecific_direct(key, val) pthread_setspecific((key), (val))
#else
#endif
13. Use of undeclared identifier 'DYLD_MACOSX_VERSION_10_13'
- 我们在
HTCommon/mach-o/dyld_priv.h
文件顶部加入
缺失的宏
#define DYLD_MACOSX_VERSION_10_11 0x000A0B00
#define DYLD_MACOSX_VERSION_10_12 0x000A0C00
#define DYLD_MACOSX_VERSION_10_13 0x000A0D00
#define DYLD_MACOSX_VERSION_10_14 0x000A0E00
14. 'Block_private.h' file not found
- 找到文件:
libclosure-74 -> Block_private.h
,复制到HTCommon
文件夹中
15. '_simple.h' file not found
- 找到文件:
libplatform-220 -> private -> _simple.h
,复制到HTCommon
文件夹中
16.'kern/restartable.h' file not found
- 在
HTCommon
文件夹中,创建kern
文件 - 找到文件:
xnu-6153.41.3 -> osfmk -> kern -> restartable.h
,复制到HTCommon/kern
文件夹中
17.can't open order file
- 选择
target -> objc -> Build Settings
- 在工程的
Order File
中添加搜索路径$(SRCROOT)/libobjc.order
18.library not found for -lCrashReporterClient
- 选择
target -> objc -> BuildSettings
- 搜索
Other Linker Flags
, 删除lCrashReporterClient
(Debug
和Release
都删)
19. SDK "macosx.internal" cannot be located. 脚本编译问题
- 选择
target -> objc -> Build Phases -> Run Script(markgc)
- 将
macosx.internal
改为macosx
编译成功!恭喜你! 👍
源码已撸好,配置新target,开启你的探索之路:
1. 新建Target
: HTTest
- 绑定二进制依赖关系
- 运行
HTTest
代码,自由编译调试
新世界的通道已搭建稳定。既然OC是面向对象的语言,那就让我们从万物始源alloc讲起!
👇
OC底层原理三:探索alloc (你好,alloc大佬 )