Xcode 5 bot无法构建 - ld找不到框架

时间:2013-11-03 06:43:46

标签: xcode continuous-integration linker-errors

我正在尝试为CI设置我的第一个Bot。这个机器人成功地从git下载源代码树,但无法构建应用程序(IOS7,模拟器模式),我可以构建和运行它,而不会遇到常规的Xcode 5.0.1环境。

特别是Bot在ld阶段失败(参见下面的摘录)。正如我可以从日志文件中建议的那样,ld找不到QuartzCore框架,其中定义了CA ..函数。

编译器从框架中找到所有头文件,因此,第一眼就看路径配置好了,但ld找不到库本身链接...

我怀疑这是一个带有权限或环境设置的微不足道的错误。你能指点我在哪里挖吗?

提前致谢。

此致 弗拉基米尔

+++ +++ +++
"/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 -bundle -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk -L/Library/Server/Xcode/Data/BotRuns/Cache/c5e74f8f-f2c8-f2c8-9bba-cc3ce564b8fb/DerivedData/Build/Products/Debug-iphonesimulator -F/Library/Server/Xcode/Data/BotRuns/Cache/c5e74f8f-f2c8-f2c8-9bba-cc3ce564b8fb/DerivedData/Build/Products/Debug-iphonesimulator -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/Developer/Library/Frameworks -F/Applications/Xcode.app/Contents/Developer/Library/Frameworks -filelist /Library/Server/Xcode/Data/BotRuns/Cache/c5e74f8f-f2c8-f2c8-9bba-cc3ce564b8fb/DerivedData/Build/Intermediates/SBK.build/Debug-iphonesimulator/SBKTests.build/Objects-normal/i386/SBKTests.LinkFileList -bundle_loader /Library/Server/Xcode/Data/BotRuns/Cache/c5e74f8f-f2c8-f2c8-9bba-cc3ce564b8fb/DerivedData/Build/Products/Debug-iphonesimulator/SBK.app/SBK -Xlinker -objc_abi_version -Xlinker 2 -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=6.1 -framework CoreText -framework SenTestingKit -framework UIKit -framework Foundation -framework CoreData -Xlinker -dependency_info -Xlinker /Library/Server/Xcode/Data/BotRuns/Cache/c5e74f8f-f2c8-f2c8-9bba-cc3ce564b8fb/DerivedData/Build/Intermediates/SBK.build/Debug-iphonesimulator/SBKTests.build/Objects-normal/i386/SBKTests_dependency_info.dat -o /Library/Server/Xcode/Data/BotRuns/Cache/c5e74f8f-f2c8-f2c8-9bba-cc3ce564b8fb/DerivedData/Build/Products/Debug-iphonesimulator/SBKTests.octest/SBKTests Undefined symbols for architecture i386:

"_CATransform3DMakeScale", referenced from:       -[MBSwitch showFillLayer:animated:] in MBSwitch.o

"_CGAffineTransformIdentity", referenced from:       -[TTTAttributedLabel drawTextInRect:] in TTTAttributedLabel.o

"_CGContextAddLineToPoint", referenced from:       -[TTTAttributedLabel drawStrike:inRect:context:] in TTTAttributedLabel.o

    "_CGContextAddPath", referenced from:

. . . . [skip ] . . . .

ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)
** TEST FAILED **
The following build commands failed:
Ld /Library/Server/Xcode/Data/BotRuns/Cache/c5e74f8f-f2c8-f2c8-9bba-cc3ce564b8fb/DerivedData/Build/Products/Debug-iphonesimulator/SBKTests.octest/SBKTests normal i386 (1 failure)
+++ +++ +++

1 个答案:

答案 0 :(得分:5)

解决!

这真是微不足道的问题。

Xcode bot尝试构建包含在架构中的所有目标。在我的情况下,这是项目本身和单元测试目标。由于尚未开发测试,因此未编译此目标。但是bot试图编译它......所以链接到“主目标”的所有框架也应该链接到测试目标。