2012-07-27 114 views
4

今天升級到山獅和Xcode 4.4後,我的一個項目不再編譯。我已經驗證它在Xcode 4.3上仍然可以編譯。這是我得到的輸出 - 有什麼想法?Xcode 4.4鐺錯誤:連接器失敗

Ld "/Users/Adam/Library/Developer/Xcode/DerivedData/Home_Loan_Finder-ciynsbeemzwbzhenhqlhhzbsgebo/Build/Products/Debug-iphonesimulator/Home Loan Finder.app/Home Loan Finder" normal i386 
    cd "/Users/Adam/Aspyre/Code/Projects/Binary/Home Loan Finder" 
    setenv MACOSX_DEPLOYMENT_TARGET 10.6 
    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/iPhoneSimulator5.1.sdk -L/Users/Adam/Library/Developer/Xcode/DerivedData/Home_Loan_Finder-ciynsbeemzwbzhenhqlhhzbsgebo/Build/Products/Debug-iphonesimulator -F/Users/Adam/Library/Developer/Xcode/DerivedData/Home_Loan_Finder-ciynsbeemzwbzhenhqlhhzbsgebo/Build/Products/Debug-iphonesimulator "-F/Users/Adam/Aspyre/Code/Projects/Binary/Home Loan Finder/../../../SDKs" -filelist "/Users/Adam/Library/Developer/Xcode/DerivedData/Home_Loan_Finder-ciynsbeemzwbzhenhqlhhzbsgebo/Build/Intermediates/Home Loan Finder.build/Debug-iphonesimulator/Home Loan Finder.build/Objects-normal/i386/Home Loan Finder.LinkFileList" -mmacosx-version-min=10.6 -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -no_implicit_dylibs -D__IPHONE_OS_VERSION_MIN_REQUIRED=50100 -framework CoreGraphics -framework Foundation -framework UIKit -framework MessageUI -framework CoreData -framework ShinobiCharts -framework OpenGLES -framework QuartzCore -framework Security -o "/Users/Adam/Library/Developer/Xcode/DerivedData/Home_Loan_Finder-ciynsbeemzwbzhenhqlhhzbsgebo/Build/Products/Debug-iphonesimulator/Home Loan Finder.app/Home Loan Finder" 

0 0x103ced280 __assert_rtn + 144 
1 0x103d43877 ld::tool::OutputFile::addressOf(ld::Internal const&, ld::Fixup const*, ld::Atom const**) + 215 
2 0x103d4512c ld::tool::OutputFile::applyFixUps(ld::Internal&, unsigned long long, ld::Atom const*, unsigned char*) + 300 
3 0x103d46a6d ld::tool::OutputFile::writeAtoms(ld::Internal&, unsigned char*) + 621 
4 0x103d42c14 ld::tool::OutputFile::writeOutputFile(ld::Internal&) + 564 
5 0x103d3d963 ld::tool::OutputFile::write(ld::Internal&) + 147 
6 0x103ced8ef main + 1263 
7 0x103cdc234 start + 52 
A linker snapshot was created at: 
    /tmp/Home Loan Finder-2012-06-27-140754.ld-snapshot 
ld: Assertion failed: (_mode == modeFinalAddress), function finalAddress, file /SourceCache/ld64/ld64-133.3/src/ld/ld.hpp, line 657. 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 
+1

看起來你在鏈接器中發現了一個錯誤。搜索'clang'的bug跟蹤器並在那裏添加一個bug報告。 – 2012-07-27 08:12:08

+0

同樣的問題,當我創建了一類第三方框架(ShinobiCharts)時 – vokilam 2012-07-27 09:26:07

+0

有趣 - 我也在用ShinobiCharts – 2012-07-27 09:57:40

回答

1

對於那些使用ShinobiCharts.framework的人:在Shinobi類上創建一個類別會導致這樣的錯誤。作爲一種解決方法,您可以用繼承替換類別(這可能會非常痛苦)。

+0

我發現類別也是問題。 – sammyd 2012-07-27 14:04:54

2

我正在查看此刻。

我們確信這是因爲當前的框架是使用Xcode 4.3構建的,4.4編譯器沒有正確地將所有內容鏈接在一起。

該解決方案似乎只是在Xcode 4.4中構建框架 - 我們現在正在審查這個框架,並且應該儘快更新框架!

完整披露:我爲ShinobiCharts的ShinobiControls工作。

編輯:ShinobiCharts的新版本現已推出,修復了這些問題。

+0

有關這個問題的任何消息? – vokilam 2012-08-03 12:00:24

+0

我們目前正在測試我們的下一個版本,它修復了這個問題(以及其他一些小問題)。現在不應該很長。 – 2012-08-03 12:44:43

+0

你好西蒙,哇,我可以得到這個新版本嗎? – sciasxp 2012-08-24 18:58:17

0

爲了說明這一點,修復方法是將「條樣式」從「所有符號」更改爲「非全局符號」,從而允許在類別中使用全局符號。

完全披露:我也爲ShinobiControls工作!