2013-03-26 29 views
0

我正在开发一个iPad应用程序。尝试创建存档时出现以下错误。无法执行命令:分段错误:11

Ld /Users/macbook/Library/Developer/Xcode/DerivedData/LSS-gtlketfveaswhcefyvuepplwjfbu/Build/Intermediates/ArchiveIntermediates/LSS/InstallationBuildProductsLocation/Applications/LSS.app/LSS normal armv7 cd /Users/macbook/Desktop/LSSCodeMarch22 setenv IPHONEOS_DEPLOYMENT_TARGET 4.3 setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.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 armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk -L/Users/macbook/Library/Developer/Xcode/DerivedData/LSS-gtlketfveaswhcefyvuepplwjfbu/Build/Intermediates/ArchiveIntermediates/LSS/BuildProductsPath/Debug-iphoneos -L/Users/macbook/Desktop/LSSCodeMarch22/LSS/CrittercismSDK -L/Users/macbook/Desktop/LSSCodeMarch22/LSS/Airship -F/Users/macbook/Library/Developer/Xcode/DerivedData/LSS-gtlketfveaswhcefyvuepplwjfbu/Build/Intermediates/ArchiveIntermediates/LSS/BuildProductsPath/Debug-iphoneos -filelist /Users/macbook/Library/Developer/Xcode/DerivedData/LSS-gtlketfveaswhcefyvuepplwjfbu/Build/Intermediates/ArchiveIntermediates/LSS/IntermediateBuildFilesPath/LSS.build/Debug-iphoneos/LSS.build/Objects-normal/armv7/LSS.LinkFileList -dead_strip -fobjc-link-runtime -miphoneos-version-min=4.3 -lsqlite3 -framework AudioToolbox -framework Security -framework Foundation -framework CoreTelephony -framework StoreKit -lz -framework SystemConfiguration -framework MobileCoreServices -framework CFNetwork -framework CoreGraphics -framework CoreLocation -framework MapKit -framework CoreText -framework MessageUI -framework UIKit -lUAirship-1.4.0 -lCrittercism_v3_4_9 -o /Users/macbook/Library/Developer/Xcode/DerivedData/LSS-gtlketfveaswhcefyvuepplwjfbu/Build/Intermediates/ArchiveIntermediates/LSS/InstallationBuildProductsLocation/Applications/LSS.app/LSS

clang: error: unable to execute command: Segmentation fault: 11

clang: error: linker command failed due to signal (use -v to see invocation)

任何人都可以请帮我解决这个问题吗?

问候

回答

0

我想通了,在应用中使用第三方API中的一个不符合最新的iOS(6.1)兼容。我从框架列表中删除了这个框架,它工作。

相关问题