學(xué)會(huì)編譯objc4-781的源碼,然后在源碼中進(jìn)行調(diào)試适贸,便于探究底層的實(shí)現(xiàn)流程
準(zhǔn)備工作
環(huán)境版本 & 最新objc源碼
- mac OS 10.15
- Xcode 11.6
- objc4-781
下載 objc4-781 源碼
依賴(lài)文件下載
需要下載以下依賴(lài)文件
- 其中除了其中
launchd-842.92.1
需要在Mac OS X 10.9.5下載愕掏,其他的均可以在最新的的版本macOS 10.15中檢索到
源碼編譯
編譯源碼就是不斷調(diào)試的過(guò)程物遇,主要有以下問(wèn)題:
問(wèn)題一:unable to find sdk 'macosx.internal'
- 全局搜索
macosx.internal
俩功,找到下圖所示位置
- 將
macosx.internal
改為macOS 10.15
,兩處均需修改
問(wèn)題二:文件找不到的報(bào)錯(cuò)問(wèn)題
1扔傅、'sys/reason.h' file not found
- 在
objc4-781
的根目錄下新建LCCommon
文件, 同時(shí)在LCCommon
文件中創(chuàng)建sys
文件 - 在之前準(zhǔn)備的
依賴(lài)文件
中全局搜索reason.h
文件
- 然后將其拷貝到
sys
文件中
- 設(shè)置文件檢索路徑:選擇
target -> objc -> Build Settings
耍共,在工程的Header Serach Paths
中添加搜索路徑$(SRCROOT)/LCCommon
2、'mach-o/dyld_priv.h' file not found
在
LCCommon
文件中 創(chuàng)建mach-o
文件-
在之前準(zhǔn)備的
依賴(lài)文件
中全局搜索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、bridgeos(3.0)荠耽、bridgeos(4.0)報(bào)錯(cuò)
- 在
dyld_priv.h
文件中搜索bridgeos(3.0)
將其刪除
(可以用空格
全部替代) - 在
lock_private.h
文件中搜索bridgeos(4.0)
將其刪除
4钩骇、'os/lock_private.h' file not found 和 'os/base_private.h' file not found
- 在
LCCommon
中創(chuàng)建os
文件 - 在之前準(zhǔn)備的
依賴(lài)文件
中全局搜索lock_private.h
、base_private.h
文件铝量,并將文件拷貝至os
文件中
5倘屹、'pthread/tsd_private.h' file 和 'pthread/spinlock_private.h' file not found
- 在
LCCommon
中創(chuàng)建pthread
文件 - 在之前準(zhǔn)備的
依賴(lài)文件
中全局搜索tsd_private.h
、spinlock_private.h
文件慢叨,并將文件拷貝至pthread
文件中
6纽匙、'System/machine/cpu_capabilities.h' file not found
- 在
LCCommon
中創(chuàng)建System
文件,接著創(chuàng)建machine
文件
在之前準(zhǔn)備的依賴(lài)文件
中全局搜索cpu_capabilities.h
文件(選擇此路徑下的xnu-6153.141.1/osfmk/machine
)拍谐,并將文件拷貝至 machine
文件中
7烛缔、'os/tsd.h' file not found
- 在之前準(zhǔn)備的
依賴(lài)文件
中全局搜索tsd.h
文件(選擇此路徑下的xnu-6153.141.1/libsyscall/os
),并將文件拷貝至os
文件中
8轩拨、'System/pthread_machdep.h' file not found
- 在這個(gè)地址下載
pthread_machdep.h
文件力穗,h文件路徑為:Libc-583/pthreads/pthread_machdep.h
- 將其拷貝至
System
文件中
在最新版的macOS 10.15中最新版下載的libc
中沒(méi)有這個(gè)h文件,需要下載Libc-583
版本
9气嫁、'CrashReporterClient.h' file not found
- 這個(gè)文件在 Libc-825.24 中找到該文件,路徑為
Libc-825.24/include/CrashReporterClient.h
- 導(dǎo)入下載的還是報(bào)錯(cuò)够坐,可以通過(guò)以下方式解決
- 需要在 Build Settings -> Preprocessor Macros 中加入:
LIBC_NO_LIBCRASHREPORTERCLIENT
- 需要在 Build Settings -> Preprocessor Macros 中加入:
10寸宵、'objc-shared-cache.h' file not found
-
文件路徑為:
dyld-732.8 --> include --> objc-shared-cache.h
將.h文件報(bào)備制拷貝到
LCCommon
11崖面、'_simple.h' file not found
- 文件路徑為:
libplatform-220 --> private --> _simple.h
- 將.h文件拷貝到
LCCommon
12、'kern/restartable.h' file not found
- 在LCCommon中創(chuàng)建
kern
文件 - 找到.h文件梯影,路徑為
xnu-6153.141.1 --> osfmk --> kern -->restartable.h
巫员,拷貝到kern
中
13、'Block_private.h' file not found
-
找到 .h 文件甲棍,文件路徑為
libclosure-74 --> Block_private.h
將.h文件拷貝到
LCCommon
14简识、libobjc.order 路徑問(wèn)題
ld: 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
15、library not found -lCrashReporterClient
-
TARGETS - objc - Build Settings
搜索other link
找到lCrashReporterClient
將其刪除
16感猛、Xcode 腳本編譯問(wèn)題
問(wèn)題:Showing All Messages /xcodebuild:1:1: SDK "macosx.internal" cannot be located.
- 選擇
target -> objc -> Build Phases -> Run Script(markgc)
- 把腳本文本
macosx.internal
改成macosx
編譯調(diào)試
-
新建一個(gè)target :LCTest
-
關(guān)聯(lián)
二進(jìn)制依賴(lài)關(guān)系
源碼調(diào)試
-
自定義一個(gè)
LCPerson
類(lèi)
-
在main.m中 創(chuàng)建
LCPerson
的對(duì)象七扰,開(kāi)啟你的源碼探索之旅吧