我在我的 IOS 代码中使用了两个外部框架。两个框架在内部都使用 PLCrashReoprter
框架,因此我得到了重复的符号错误。
现在框架之一,即崩溃报告框架提供了为文件名/符号添加前缀的规定。下面是在nameSpace.h中添加前缀的代码:
#define PLCRASHREPORTER_PREFIX AcmeCo
#ifdef PLCRASHREPORTER_PREFIX
// We need two extra layers of indirection to make CPP substitute
// the PLCRASHREPORTER_PREFIX define.
#define PLNS_impl2(prefix, symbol) prefix ## symbol
#define PLNS_impl(prefix, symbol) PLNS_impl2(prefix, symbol)
#define PLNS(symbol) PLNS_impl(PLCRASHREPORTER_PREFIX, symbol)
#define PLCrashMachExceptionServer PLNS(PLCrashMachExceptionServer)
#define PLCrashReport PLNS(PLCrashReport)
#define PLCrashReportApplicationInfo PLNS(PLCrashReportApplicationInfo)
#define PLCrashReportBinaryImageInfo PLNS(PLCrashReportBinaryImageInfo)
#define PLCrashReportExceptionInfo PLNS(PLCrashReportExceptionInfo)
现在错误“来自 Apple Mach-O Linker Error
”
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_AcmeCoPLCrashReport", referenced from:
objc-class-ref in CrashReporter.o
我已在所有包含文件上方添加了 nameSpace.h
文件。
请指导我尝试所有可能的事情,但没有用。 提前致谢!!
您需要使用相同的宏定义重新编译相应的框架(所有 .c 文件),以便它导出并使用修改后的符号名称。
关于ios - 为文件添加前缀以避免外部框架之间的符号冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26734638/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |