titanium加速器未能build立

我试图在iPad模拟器中运行我的应用程序,但每当我尝试模拟时都会收到此错误。 我已经更新了一切,对于一个加赛者noob的一些同胞帮助将不胜感激。 任何想法都会有帮助。

[ERROR] : ** BUILD FAILED ** [ERROR] : The following build commands failed: [ERROR] : Ld "build/Debug-iphonesimulator/Neoplastic Heme.app/Neoplastic Heme" normal i386 [ERROR] : (1 failure) 

这是我得到的Xcode我的第一个错误。 也许这有帮助。

 Ld "/Users/john/Library/Developer/Xcode/DerivedData/Neoplastic_Heme-amibyrwaylsahtgseinqplkoqzqx/Build/Products/Debug-iphonesimulator/Neoplastic Heme.app/Neoplastic Heme" normal i386 cd "/Users/john/Desktop/Neoplastic Heme/build/iphone" setenv IPHONEOS_DEPLOYMENT_TARGET 4.0 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/john/Library/Developer/Xcode/DerivedData/Neoplastic_Heme-amibyrwaylsahtgseinqplkoqzqx/Build/Products/Debug-iphonesimulator "-L/Users/john/Desktop/Neoplastic Heme/build/iphone/lib" -F/Users/john/Library/Developer/Xcode/DerivedData/Neoplastic_Heme-amibyrwaylsahtgseinqplkoqzqx/Build/Products/Debug-iphonesimulator -filelist "/Users/john/Library/Developer/Xcode/DerivedData/Neoplastic_Heme-amibyrwaylsahtgseinqplkoqzqx/Build/Intermediates/Neoplastic Heme.build/Debug-iphonesimulator/Neoplastic Heme-iPad.build/Objects-normal/i386/Neoplastic Heme.LinkFileList" -Xlinker -objc_abi_version -Xlinker 2 -ObjC -weak_framework iAd -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=4.0 -framework Foundation -weak_framework UIKit -framework CoreGraphics -framework AddressBook -framework AddressBookUI -framework CFNetwork -framework CoreLocation -framework MapKit -framework MessageUI -framework MobileCoreServices -framework OpenGLES -framework QuartzCore -framework SystemConfiguration -lsqlite3 -lz -framework AudioToolbox -weak_framework MediaPlayer -framework AVFoundation -lxml2 -framework StoreKit -lTiCore -ltiverify -lti_ios_debugger -licucore -o "/Users/john/Library/Developer/Xcode/DerivedData/Neoplastic_Heme-amibyrwaylsahtgseinqplkoqzqx/Build/Products/Debug-iphonesimulator/Neoplastic Heme.app/Neoplastic Heme" 

清理构build。 许多错误可以通过执行一个干净的构build来解决。 http://www.titaniumtips.com/files/how_to_clean_the_build_folder.php

我最近也遇到这个错误。 在我的情况下,解决scheme是更新/删除旧的SDK版本的任何模块。

我的模块有一段时间没有更新,但titanium的SDK。 错误是不是很丰富,但一旦我删除模块的错误消失,我可以再次build立。

但在尝试之前,总要尝试清理项目。 它通常有帮助! 这应该是第一步,如果这不起作用,请尝试我的解决scheme。

TLDR:读取粗体文本。

我一直在努力解决这个问题一天,做了一个完全干净的重新安装我的Mac,Titanium和xCode,它仍然给了我这个错误。

我创build了一个新项目,只要我尝试运行它(Titanium示例代码仍然在其中)。 我得到了完全相同的错误。

原来,问题是我试图通过以太网连接在外部(服务器)硬盘驱动器上创build项目。 这似乎在某种程度上腐蚀了tiapp.xml文件,尽pipe在手工检查中我找不到任何东西。

我的解决scheme是在本地硬盘上创build项目。 (在Mac上,不在服务器上。)如果需要,可以将其复制到服务器。 这似乎是一个与Mac并不总是喜欢与基于Windows的文件系统工作的问题。

希望这有助于某人。