2014-02-14 41 views
5

所以我遇到了一些問題,Apple在過去3次拒絕了我的應用程序。他們一直留給我這個錯誤。ld:爲iOS模擬器構建,但鏈接到爲MacOSX文件構建的dylib

Incident Identifier: 0F8AC4C8-57A6-4E1E-BE2B-0A93E6A85564 
CrashReporter Key: 03e6d04a9f8fcf7989c751d0befe3b50ff6720c8 
Hardware Model:  xxx 
Process:    Unoffical Statitics [1012] 
Path:    /var/mobile/Applications/0A0DD25F-0320-4D79-BB3D-F69A9823B82C/Unoffical Statitics.app/Unoffical Statitics 
Identifier:   com.APPSTARME.ManUtd 
Version:    1.0 (1.0) 
Code Type:   ARM (Native) 
Parent Process:  launchd [1] 

Date/Time:   2014-02-12 10:44:08.759 -0800 
OS Version:   iOS 7.0.4 (11B554a) 
Report Version:  104 

Exception Type: EXC_BREAKPOINT (SIGTRAP) 
Exception Codes: 0x0000000000000001, 0x00000000e7ffdefe 
Triggered by Thread: 0 

Dyld Error Message: 
    Library not loaded: /Developer/Library/Frameworks/SenTestingKit.framework/SenTestingKit 
    Referenced from: /var/mobile/Applications/0A0DD25F-0320-4D79-BB3D-F69A9823B82C/Unoffical Statitics.app/Unoffical Statitics 
    Reason: image not found 
    Dyld Version: 324 

Binary Images: 
0x2befd000 - 0x2bf1d77a dyld armv7s <fd7cb81f388f39cbac4f71338b669c24> /usr/lib/dyld 
0x3ae07000 - 0x3aebafff libxml2.2.dylib armv7s <810acee8bebe317492118d752643bde3> /usr/lib/libxml2.2.dylib 

所以我一直在試圖解決,沒有運氣可言這個問題,但我只是刪除我所有的框架搜索路徑(Xcode中現在設置這一項爲默認$(DEVELOPER_FRAMEWORKS_DIR)

然而,當我嘗試運行應用程序現在我收到此錯誤您client.app

ld: building for iOS Simulator, but linking against dylib built for MacOSX file '/Applications/Xcode51-DP2.app/Contents/Developer/Library/Frameworks/SenTestingKit.framework/SenTestingKit' for architecture i386 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 

回答

1

運行以下命令:

出口PATH = /應用/ Xcode.app /Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:$PATH

根據您的Xcode的名稱是Xocde.app。

相關問題