iOS底层原理01:objc4-818 源码编译 & 调试

2021-03-17  本文已影响0人  黑白森林无间道

准备工作

环境版本 & 最新objc源码

依赖文件下载

需要下载以下依赖文件


image

其中除了其中 launchd-106.10 需要在Mac OS X 10.4.4下载,其他的均可以在最新的的版本macOS 10.15.4中检索到

源码编译

源码编译就是不断的调试修改源码的问题,主要有以下问题

问题一:unable to find sdk 'macosx.internal'

image image

问题二:文件找不到的报错问题

【1】'sys/reason.h' file not found

image image image

【2】'mach-o/dyld_priv.h' file not found

image image
#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
image image

【3】'os/lock_private.h' file not found

image image

【4】'os/base_private.h' file not found

image image
image image

【5】'pthread/tsd_private.h' file not found 和 'pthread/spinlock_private.h' file not found

image

【6】'System/machine/cpu_capabilities.h' file not found

image image

【7】os/tsd.h' file not found

image image

【8】'System/pthread_machdep.h' file not found

image
在最新版的macOS 10.15中最新版下载的libc中没有这个h文件,需要下载Libc-583版本

【9】'CrashReporterClient.h' file not found

image
#define LIBC_NO_LIBCRASHREPORTERCLIENT
image

【10】Typedef redefinition with different types ('int' vs 'volatile OSSpinLock' (aka 'volatile int'))

image

【11】Static declaration of '_pthread_has_direct_tsd' follows non-static declaration

image

pthread_machdep.h有三个函数定义重复了:

【解决方法】这里选择把pthread_machdep.h文件中的定义注释掉。

【12】'os/feature_private.h' file not found

直接将该引用的头文件注释,objc-runtime.mm注释掉第36行和444~446

image
image
image

【13】'_simple.h' file not found

image

【14】'Cambria/Traps.h' file not found

image image

【15】'kern/restartable.h' file not found

image image

【16】'objc-bp-assist.h' file not found

image

【17】Use of undeclared identifier 'dyld_fall_2020_os_versions'

报这种相关错误的地方,目前可以将对应的代码全部注释。注释的地方有:

【18】Use of undeclared identifier 'dyld_platform_version_macOS_10_13'

直接定位到该段代码,并注释掉。如下所示


image

【19】Use of undeclared identifier 'dyld_platform_version_macOS_10_11'

直接定位到该段代码,并注释掉。如下所示


image

【20】'objc-shared-cache.h' file not found

image image

【21】Use of undeclared identifier 'dyld_fall_2018_os_versions'

直接定位到该段代码,并注释掉。如下所示


image

【22】'os/linker_set.h' file not found

image

【23】Unknown type name 'kernel_mach_header_t'

image image

【24】'objc-shared-cache.h' file not found

image image

【25】'Block_private.h' file not found

image image

【26】'os/reason_private.h' file not found

image image

【27】'os/variant_private.h' file not found

image image

【28】Use of undeclared identifier 'dyld_platform_version_bridgeOS_2_0'

image image

【29】'_static_assert' declared as an array with a negative size

image

【30】libobjc.order 路径问题

问题描述为:ld: can't open order file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk/AppleInternal/OrderFiles/libobjc.order

image image

【31】library not found for -lCrashReporterClient

image image

【32】library not found for -loah

image image

【33】Xcode 脚本编译问题

问题描述为:SDK "macosx.internal" cannot be located.

image image

编译调试

image image

源码调试

image image

补充

如果有以下调试问题,可以根据提供的方案进行尝试

创建的调试target中main的断点无法断住的问题

image image
上一篇 下一篇

猜你喜欢

热点阅读