我在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)
现在错误" comes Apple Mach-O Linker Error
"
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_AcmeCoPLCrashReport", referenced from:
objc-class-ref in CrashReporter.o
我已将nameSpace.h
文件添加到所有包含的上方。
请引导我尝试所有可能的事情,但没有用。 在此先感谢!!
答案 0 :(得分:1)
您需要使用相同的宏定义重新编译相应的框架(所有.c文件),以便导出并使用修改后的符号名称。