alloc底层原理分析-01 源码编译
之前的两篇简单操作了一波,但是还是不爽,现在想办法直接拿源码编译跑一边,看下面:
mac环境:macOS 10.15.6 xcode12
下载objc源码:
imageimage
解压 objc4-781,
运行 objc.xcodeproj
选择target
,objc
运行,会报一堆错误,如下:
问题1: unable to find sdk 'macosx.internal'
- 解决方法
target → objc → Build Setting → Base SDK → macOS
-
objc , obc-trampolines
这个必须改, objc-simulator, objc4_tests 也是
macosx.internal找不到的, 一起都改下
问题2: 'sys/reason.h' file not found
- 解决方法
项目里面创建, Common(名字随便起)文件夹,统一存放找不到文件,
- Common下建立sys文件夹, 然后去下载reason.h文件,放入Common->sys中
xnu-6153.141.1/bsd/sys/reason.h
xnu-6153.141.1、
- 配置文件检索路径:
target → objc → Build Setting → Header Serach Paths
中添加搜索路径$(SRCROOT)/Common
问题3: mach-o/dyld_priv.h' file not found
- Common下新建mach-o文件夹, 然后去下载dyld_priv.h文件,放入Common -> 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
问题4: 'os/lock_private.h' file not found
, dyld_priv.h中 bridgeos(3.0)
-
先解决这个bridgeos 3.0这个, Bridge OS是Apple独立的T2安全芯片使用的嵌入式操作系统, 而在这里我们用不到这个系统所以删掉即可
image -
Common下新建os文件夹, 然后去下载lock_private.h文件,放入Common->os下
问题5: 'os/base_private.h' file not found
其实5跟4可以放一起解决, 因为都在 libplatform里面
libplatform 中找到private → os → base_private.h
放入我们刚才建立的文件夹内 Common -> os -> base_private.h
同样之后运行lock_private也会报bridgeos这个错误, 去掉即可
image问题6: 'pthread/tsd_private.h' file not found
Common下新建pthread文件夹, 然后去下载tsd_private.h文件,放入Common->pthread
问题7: 'System/machine/cpu_capabilities.h' file not found
Common下新建System文件夹,进入System在创建machine文件夹, 然后去下载cpu_capabilities.h文件,放入Common -> System->machine
问题8: 'os/tsd.h' file not found
-
tsd.h也是在问题7 xnu库中,
-
xnu 中找到
libsysycall / os / tsd.h
放入之前建立的文件夹内Common / os / tsd.h
问题9: 'pthread/spinlock_private.h' file not found
还是一样 下载spinlock_private.h文件, 这个跟问题6一样都在libpthread里面,放libpthread中
问题10: 'System/pthread_machdep.h' file not found
还是一样 下载pthread_machdep.h文件, 这个在 Libc中
https://opensource.apple.com/source/Libc/Libc-825.24/pthreads/pthread_machdep.h
问题11: 'CrashReporterClient.h' file not found
还是一样 下载'CrashReporterClient.h文件, 这个在也在Libc中, 这里也是留意下Libc不能下最新的, 也是没有这个 CrashReporterClient.h文件, 在 Libc-825.26中
https://opensource.apple.com/source/Libc/Libc-825.26/include/CrashReporterClient.h
2.引入之后CrashReporterClient.h 还是报找不到问题
方法1: 需要在 Build Settings -> Preprocessor Macros
中加入LIBC_NO_LIBCRASHREPORTERCLIENT
如果还是报错
方法2 :直接更改了里面的宏信息 #define LIBC_NO_LIBCRASHREPORTERCLIENT
方法3 :如果还是报错CrashReporterClient 的问题,解决方法是 在BuildSetting --> Other Linker Flags 中去掉CrashReporterClient .
因为我这边只是方法① 就已经修复好, 方法②, 方法③我这边没试 :)
这个问题解决, 我们再运行, 得到我们第十二个错误
问题12: pthread_machdep.h 中 Typedef redefinition with different types ('int' vs 'volatile OSSpinLock' (aka 'volatile int'))
, Static declaration of '_pthread_has_direct_tsd' follows non-static declaration
, Static declaration of '_pthread_getspecific_direct' follows non-static declaration
把报错的地方注释掉, 注意一定要注释全, 别漏代码
问题13: 'objc-shared-cache.h' file not found
在之前问题3下载的dyld里面找到include/objc-shared-cache.h
放入Common内 Common / objc-shared-cache.h
问题14: objc-errors.mm中报错 '_simple.h' file not found
在之前问题4下载的libplatform里面找到private / _simple.h
放入Common内 Common /_simple.h
问题15: kern/restartable.h
Common 中新建kern文件夹, 在之前问题2下载的xnu里面找到osfmk / kern
放入Common内 SACommon/ kern / restartable.h
问题16: 'Block_private.h' file not found
在下面中找到后下载,放入Common
问题17: Mismatch in debug-ness macros
这个简单, 注释掉objc-runtime.mm中的#error mismatch in debug-ness macros即可
问题18: libobjc.order
路径问题
targets → Build Settings → Order File
添加 $(SRCROOT)/libobjc.order
问题19: /xcodebuild:1:1: SDK "macosx.internal" cannot be located.
编译脚本问题
image
targets → Build Phases → Run Script
中macosx.internal
改成 macosx
我们再运行, OK, 没有再报错, 那么接下来我们就可以加些东西来进行编译调试
最后就是这个样子:
截屏2020-12-22 下午7.25.03.png
编译调试环节
targets
点击 "+" 新建 target: KCTest
绑定依赖关系 Dependencies → objc
, Link Binary With Libraries → libobjc.A.dylib
源码调试环节
在之前建立的KCTest中 创建 KCPerson对象(名字随便取)
截屏2020-12-22 下午7.35.41.png
targets → KCTest → Build Phases → Compile Sources
中main.m
放在最上面方便断点调试
截屏2020-12-22 下午7.37.11.png