2013-04-12 77 views
3

我試圖在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" 
+0

一些代碼或至少一些信息會很好.. –

+0

這不是我的代碼,我基本上是試圖解開另一個開發人員的第一個問題..你還需要什麼其他信息? – wowzuzz

+0

你接管了此前的開發人員計算機還是代碼?您只是在xcode中構建代碼或者您是否使用Titanium代碼? – Martin

回答

8

清理版本。許多錯誤可以通過執行乾淨的構建來解決。 http://www.titaniumtips.com/files/how_to_clean_the_build_folder.php

+0

謝謝soooooo多!!! :) 我去你的鏈接,並清空我的iPhone文件夾就像它說的。然後我去建立它,它完美地運作。讓我的一天! – wowzuzz

+1

不客氣:-)花了我好幾個月的時間使用Titanium來解決這個問題。就像我說的,如果你再次遇到問題,你不知道爲什麼要清理你的構建。 –

7

我最近也遇到過這個錯誤。在我的情況下,解決方案是更新/刪除爲舊SDK版本構建的任何模塊。

我的模塊有一段時間沒有更新,但Titanium SDK有。錯誤信息不是很豐富,但是一旦我移除了模塊,錯誤就消失了,我可以重新構建。

但在嘗試此操作之前,請始終嘗試清理該項目。它通常有幫助!這應該是第一步,如果這不起作用,請嘗試我的解決方案。

+0

我面臨同樣的問題,並嘗試了很多東西,但問題仍然存在.. :(任何幫助將是偉大的。 –

+1

我也能夠通過更新模塊來解決。要確定是否其模塊,從tiamm中刪除所有模塊。xml並嘗試構建,如果它啓動模擬器,那麼它就是一個模塊問題,您需要逐個解決它們以確定問題所在。 – Soshmo

0

TLDR:讀取粗體文本。

我一直在努力解決這個問題一整天,做了一個完全乾淨的重新安裝我的Mac,鈦和xCode,它仍然給了我這個錯誤。

我創建了一個新項目,只要我試圖運行它(鈦示例代碼仍然在其中)。我得到了完全相同的錯誤。

原來,對我來說問題是我試圖通過以太網連接在外部(服務器)硬盤驅動器上創建項目。這似乎在某種程度上在tiapp.xml文件生成後立即破壞了tiapp.xml文件,即使在手動檢查時我找不到任何東西。

我的解決方案是在本地硬盤上創建項目。(在Mac上,不在服務器上)。如果需要,可以將其複製到服務器。這似乎與Mac並不總是喜歡與基於Windows的文件系統一起工作的問題。

希望這可以幫助別人。