4

我在我的项目中使用了一些“.o”文件,编译时显示以下错误,

error:linker command failed with exit code 1 (use -v to see invocation)

我在下面发布了错误日志

Ld /Users/deepak/Library/Developer/Xcode/DerivedData/app-bnwpvhpbrfdurbdgxucyddqyfosh/Build/Products/Debug-iphonesimulator/app.app/app normal i386
    cd /Users/deepak/Workspace/iosDevelopement/PROJECTS/KML/app
    setenv IPHONEOS_DEPLOYMENT_TARGET 4.3
    setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.0.sdk -L/Users/deepak/Library/Developer/Xcode/DerivedData/app-bnwpvhpbrfdurbdgxucyddqyfosh/Build/Products/Debug-iphonesimulator -F/Users/deepak/Library/Developer/Xcode/DerivedData/app-bnwpvhpbrfdurbdgxucyddqyfosh/Build/Products/Debug-iphonesimulator -F/Users/deepak/Workspace/iosDevelopement/PROJECTS/KML/app -filelist /Users/deepak/Library/Developer/Xcode/DerivedData/app-bnwpvhpbrfdurbdgxucyddqyfosh/Build/Intermediates/app.build/Debug-iphonesimulator/app.build/Objects-normal/i386/app.LinkFileList -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=4.3 -lstdc++ -licucore -lz -framework MapKit -framework CoreLocation -framework QuartzCore -framework UIKit -framework Foundation -framework CoreGraphics -framework KML -o /Users/deepak/Library/Developer/Xcode/DerivedData/app-bnwpvhpbrfdurbdgxucyddqyfosh/Build/Products/Debug-iphonesimulator/app.app/app
Undefined symbols for architecture i386:
  "_OBJC_CLASS_$_ZipException", referenced from:
      objc-class-ref in ZipFile.o
      objc-class-ref in ZipReadStream.o
      objc-class-ref in ZipWriteStream.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

最初,有更多错误并通过导入libs.dylib框架解决了它们,

但仍然存在 2 个错误。

编辑:我已经通过了流行的问题Undefined symbols for architecture i386: _OBJC_CLASS_$_SKPSMTPMessage",引用自:错误,但该解决方案对我不起作用

有谁知道我哪里出错了?我是 xcode 的问题,是否有任何缺少的库或链接失败?

提前致谢

4

2 回答 2

39

错误消息说未定义的符号被ZipFile.oZipReadStream.o和引用ZipWriteStream.o。这意味着您正在尝试在应用程序中使用Objective-Zip库。

未定义的符号是_OBJC_CLASS_$_ZipException. @implemention ZipException编译器在源文件中看到指令时会生成此符号。

Objective-Zip 库包含一个名为 的文件ZipException.m,其中包含该@implementation ZipException指令。

最可能的解释是您根本没有包含ZipException.m在您的目标中。检查您是否已这样做。如果您不知道如何,请查看此答案

另一种可能的解释是,您ZipException.m可能不小心修改了文件,从而删除了@implementation ZipException指令或将其隐藏在编译器中。检查您是否没有修改该文件,并且它是否包含该@implementation ZipException指令。

于 2013-01-07T07:43:45.197 回答
0

我提供的解决方案听起来很奇怪,我花了一段时间才真正尝试它,但它对我有用。这仅在您修复了所有框架链接问题时才有效。对我来说就是这种情况,但我仍然遇到很少的 Mach-O 错误。

我所做的是从链接的框架和库中删除所有库(在常规选项卡 iOSTarget 中),然后通过将它们从左窗格拖动到链接的框架和库空间来添加它们。

于 2014-05-02T18:41:09.623 回答