Apple Mach-O链接器(id)错误

时间:2011-08-18 12:01:29

标签: ios xcode4

我在下面有一个错误:

ld /Volumes/Data/Library/Developer/Xcode/DerivedData/uniText-cgynaitlevdrajfeoaldwldehaft/Build/Products/Debug-iphonesimulator/uniText.app/uniText normal i386
    cd "/Volumes/Data/Documents/XCode Projects/Trans SMS"
    setenv MACOSX_DEPLOYMENT_TARGET 10.6
    setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
    /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/llvm-gcc-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk -L/Volumes/Data/Library/Developer/Xcode/DerivedData/uniText-cgynaitlevdrajfeoaldwldehaft/Build/Products/Debug-iphonesimulator -F/Volumes/Data/Library/Developer/Xcode/DerivedData/uniText-cgynaitlevdrajfeoaldwldehaft/Build/Products/Debug-iphonesimulator -filelist /Volumes/Data/Library/Developer/Xcode/DerivedData/uniText-cgynaitlevdrajfeoaldwldehaft/Build/Intermediates/uniText.build/Debug-iphonesimulator/uniText.build/Objects-normal/i386/uniText.LinkFileList -mmacosx-version-min=10.6 -Xlinker -objc_abi_version -Xlinker 2 -framework SystemConfiguration -framework MessageUI -framework AddressBook -framework AddressBookUI -framework CoreTelephony -lsqlite3.0 -framework UIKit -framework Foundation -framework CoreGraphics -o /Volumes/Data/Library/Developer/Xcode/DerivedData/uniText-cgynaitlevdrajfeoaldwldehaft/Build/Products/Debug-iphonesimulator/uniText.app/uniText

ld: duplicate symbol _OBJC_IVAR_$_FMDatabase.databasePath in /Volumes/Data/Library/Developer/Xcode/DerivedData/uniText-cgynaitlevdrajfeoaldwldehaft/Build/Intermediates/uniText.build/Debug-iphonesimulator/uniText.build/Objects-normal/i386/FMDatabase-566DC6D59187887D.o and /Volumes/Data/Library/Developer/Xcode/DerivedData/uniText-cgynaitlevdrajfeoaldwldehaft/Build/Intermediates/uniText.build/Debug-iphonesimulator/uniText.build/Objects-normal/i386/FMDatabase-566DC6D59187887D.o for architecture i386
collect2: ld returned 1 exit status
Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/llvm-gcc-4.2 failed with exit code 1

有人可以帮帮我吗? 以前它曾经正常工作。 我不知道我在项目来源中发生了什么变化。 但我确信我从未改变过FMDatabase.h和.m。

中的任何内容

6 个答案:

答案 0 :(得分:4)

错误的相关部分是ld: duplicate symbol _OBJC_IVAR_$_FMDatabase.databasePath。出于某种原因,链接器(ld)尝试将FMDatabase链接两次。检查项目中是否有多个副本。

答案 1 :(得分:4)

当我将值初始化为我的.h文件中全局范围中定义的常量时,我​​遇到了这个错误。

通过在标题中声明它们并在.m文件中初始化它来解决问题。

答案 2 :(得分:3)

这是一个相当古老的帖子,但也许它仍然有助于某人。

我遇到了同样的问题,对我来说解决方案是:我意外地将.m文件链接到其中一个标题而不是.h文件中。刚改变它以正确链接.h文件。

答案 3 :(得分:1)

检查是否导入了所需的框架。

答案 4 :(得分:0)

我通过更新框架来解决问题。

答案 5 :(得分:0)

我通过执行清洁来解决。

然后可以建立。