本文主要是通過將objc4-781的源碼編譯成功着憨,然后在源碼中進行調(diào)試梢褐,便于跟蹤方法的底層實現(xiàn)流程
準備工作
環(huán)境版本 & 最新objc源碼
- mac OS 10.15
- Xcode 11.4
- objc4-781
依賴文件下載
需要下載以下依賴文件
其中除了其中 launchd-106.10 需要在Mac OS X 10.4.4下載,其他的均可以在最新的的版本macOS 10.15中檢索到
源碼編譯
源碼編譯就是不斷的調(diào)試修改源碼的問題,主要有以下問題
問題一:unable to find sdk 'macosx.internal'
- 選擇
target -> objc -> Build Settings -> Base SDK
-> 選擇 macOS 【target中的objc 和 obc-trampolines
都需要更改】
問題二:文件找不到的報錯問題
【1】'sys/reason.h' file not found
在Apple source的
macOS10.15 --> xnu-6153.11.26/bsd/sys/reason.h
路徑自行下載在
objc4-781
的根目錄下新建CJLCommon
文件, 同時在CJLCommon文件中創(chuàng)建sys
文件-
最后將
reason.h
文件拷貝到sys
文件中
-
設(shè)置文件檢索路徑
:選擇target -> objc -> Build Settings
价卤,在工程的Header Serach Paths
中添加搜索路徑$(SRCROOT)/CJLCommon
【2】'mach-o/dyld_priv.h' file not found
- 在
CJLCommon
文件中 創(chuàng)建mach-o
文件 - 找到文件:
dyld-733.6 -- include -- mach-o -- dyld_priv.h
-
拷貝到 mach-o文件中
- 拷貝到文件后铣耘,還需要修改
dyld_priv.h
文件宅倒,即在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
【3】'os/lock_private.h' file not found 和 'os/base_private.h' file not found
- 在CJLCommon中創(chuàng)建
os
文件 - 找到
lock_private.h、base_private.h
文件:libplatform-220 --> private --> os --> lock_private.h 丈莺、base_private.h
划煮,并將文件拷貝至 os 文件中
- lock_private.h dyld_priv.h中如果報錯,去掉 bridgeos(3.0)缔俄,感謝@nicedayCoco
童鞋
【4】'pthread/tsd_private.h' file not found 和 'pthread/spinlock_private.h' file not found
- 在CJLCommon中創(chuàng)建 pthread 文件
- 找到
tsd_private.h弛秋、spinlock_private.h
文件,h文件路徑為:libpthread-416.11.1 --> private --> tsd_private.h牵现、spinlock_private.h
铐懊,并拷貝到pthread
文件
【5】'System/machine/cpu_capabilities.h' file not found
- 創(chuàng)建
System -- machine
文件 - 找到
cpu_capabilities.h
文件拷貝到machine
文件,h文件路徑為:xnu6153.11.26 --> osfmk --> machine --> cpu_capabilities.h
【6】os/tsd.h' file not found
- 找到
tsd.h
文件瞎疼,拷貝到os
文件, h文件路徑為:xnu6153.11.26 --> libsyscall --> os --> tsd.h
【7】'System/pthread_machdep.h' file not found
- 在這個地址下載
pthread_machdep.h
文件科乎,h文件路徑為:Libc-583/pthreads/pthread_machdep.h
- 將其拷貝至
system
文件中
在最新版的macOS 10.15中最新版下載的
libc
中沒有這個h文件,需要下載Libc-583
版本
【8】'CrashReporterClient.h' file not found
- 這個文件在改地址搜索 Libc-825.24中找到該文件贼急,路徑為
Libc-825.24/include/CrashReporterClient.h
茅茂,直接存放在CJLCommon文件中 - 導(dǎo)入下載的還是報錯,可以通過以下方式解決
- 需要在 Build Settings -> Preprocessor Macros 中加入:LIBC_NO_LIBCRASHREPORTERCLIENT
- 或者下載我給大家的文件CrashReporterClient,這里面我們直接更改了里面的宏信息 #define LIBC_NO_LIBCRASHREPORTERCLIENT
- 如果還是報錯CrashReporterClient
的問題太抓,解決方法是 在BuildSetting --> Other Linker Flags
中去掉CrashReporterClient
.
【9】'objc-shared-cache.h' file not found
- 文件路徑為:
dyld-733.6 --> include --> objc-shared-cache.h
- 將h文件報備制拷貝到
CJLCommon
【10】Mismatch in debug-ness macros
-
注釋掉objc-runtime.mm中的#error mismatch in debug-ness macros
【11】'_simple.h' file not found
- 文件路徑為:
libplatform-220 --> private --> _simple.h
- 將文件拷貝至
CJLCommon
中
【12】'kern/restartable.h' file not found
- 在CJLCommon中創(chuàng)建
kern
文件 - 找到 h文件空闲,路徑為
xnu-6153.11.26 --> osfmk --> kern -->restartable.h
【13】'Block_private.h' file not found
- 找到 h 文件,文件路徑為
libclosure-74 --> Block_private.h
- 拷貝至
CJLCommon
目錄
【14】libobjc.order 路徑問題
問題描述為:can't open order file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/AppleInternal/OrderFiles/libobjc.order
- 選擇
target -> objc -> Build Settings
- 在工程的
Order File
中添加搜索路徑$(SRCROOT)/libobjc.order
【14】Xcode 腳本編譯問題
問題描述為:/xcodebuild:1:1: SDK "macosx.internal" cannot be located.
- 選擇
target -> objc -> Build Phases -> Run Script(markgc)
- 把腳本文本
macosx.internal
改成macosx
編譯調(diào)試
-
新建一個
target
:CJLTest
-
綁定
二進制依賴關(guān)系
源碼調(diào)試
-
自定義一個CJLPerson類
-
在main.m中 創(chuàng)建 CJLPerson的對象走敌,進行源碼調(diào)試
補充
如果有以下調(diào)試問題碴倾,可以根據(jù)提供的方案進行嘗試
創(chuàng)建的調(diào)試target中main的斷點無法斷住的問題
-
Build Phases
-->Compile Source
中,將main文件移至第一位
-
Build Setting
--> 將Enable Hardened Runtime
置為NO
2021-03-22 補充
由于xcode12上無法運行781源碼掉丽,所以再次提供一個xcode12以上版本可以跑的源碼 objc4-818.2