我正在尝试在 Ubuntu 12 Linux 上编译 Objective-C 代码。
main.m 看起来像这样:
#import <Foundation/Foundation.h>
#import "CEFoo/CEFoo.h"
int main (int argc, const char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSLog (@"hello world");
[pool drain];
return 0;
}
在 CEFoo.h 中,我有以下定义:
struct StructName{ // line 86
BOOL first;
...
...
};
@interface StructName :NSObject // line 92
BOOL first; // line 93
...
...
@end // 96
当我去编译时
gcc main.m `gnustep-config --objc-flags` -lgnustep-base -o main.bin
我收到这条消息:
Foo/CEFoo.h:93:1: error: redefinition of ‘struct StructName’
Foo/CEFoo.h:86:8: note: originally defined here
我读过这可能是由于两次重新定义结构,或者在使用包含而不是导入时递归导入引起的。
grep -r "struct StructName" *
仅显示定义的一次出现。
我还搜索了项目中的每个包含语句,并没有发现包含与导入的明显用途,或者 CEFoo.h 的双重包含/导入(包含多次定义/导入的结构的文件) .
我该如何进一步追查造成这种情况的原因?我假设我要导入它两次——如果是,有没有办法通过第一次定义的详细或日志来观看它?
我可以做些什么来解决这个问题?
TIA