2

開発者パービューでコードを実行すると動作しますが、GM シードでは次のエラーが発生します

Ld /Users/GhostMac/Library/Developer/Xcode/DerivedData/Retail_Wizard_Solution-eazomrmcxqeysfehcgngulleshls/Build/Intermediates/iFurniture.build/Debug-iphoneos/iFurniture.build/Objects-normal/armv7s/iFurniture normal armv7s
    cd /Volumes/GhostWork/HomeWork/Sachchaudary/furniture-wizard/FurnitureWizard
    setenv IPHONEOS_DEPLOYMENT_TARGET 5.0
    setenv PATH "/Volumes/GraveYard/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Volumes/GraveYard/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
    /Volumes/GraveYard/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch armv7s -isysroot /Volumes/GraveYard/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -L/Users/GhostMac/Library/Developer/Xcode/DerivedData/Retail_Wizard_Solution-eazomrmcxqeysfehcgngulleshls/Build/Products/Debug-iphoneos -L/Volumes/GhostWork/HomeWork/Sachchaudary/furniture-wizard/FurnitureWizard/../OpenSSL/lib -F/Users/GhostMac/Library/Developer/Xcode/DerivedData/Retail_Wizard_Solution-eazomrmcxqeysfehcgngulleshls/Build/Products/Debug-iphoneos -filelist /Users/GhostMac/Library/Developer/Xcode/DerivedData/Retail_Wizard_Solution-eazomrmcxqeysfehcgngulleshls/Build/Intermediates/iFurniture.build/Debug-iphoneos/iFurniture.build/Objects-normal/armv7s/iFurniture.LinkFileList -dead_strip -all_load -fobjc-arc -fobjc-link-runtime -miphoneos-version-min=5.0 -lz -lTBXML-iOS -lsqlite3 -lFMDB -lcrypto -lssl -lxml2 -framework SystemConfiguration -framework QuartzCore -framework ExternalAccessory -framework CFNetwork -framework AddressBook -framework AddressBookUI -framework MessageUI -framework CoreText -lHTTPServer -framework CoreData -lAshleyWebservice -lCommon -lDDXML -lFTPServer -lTapkuLibrary -lWizardScanner -framework UIKit -framework Foundation -framework CoreGraphics -o /Users/GhostMac/Library/Developer/Xcode/DerivedData/Retail_Wizard_Solution-eazomrmcxqeysfehcgngulleshls/Build/Intermediates/iFurniture.build/Debug-iphoneos/iFurniture.build/Objects-normal/armv7s/iFurniture

ld: warning: ignoring file /Users/GhostMac/Library/Developer/Xcode/DerivedData/Retail_Wizard_Solution-eazomrmcxqeysfehcgngulleshls/Build/Products/Debug-iphoneos/libTBXML-iOS.a, file was built for archive which is not the architecture being linked (armv7s): /Users/GhostMac/Library/Developer/Xcode/DerivedData/Retail_Wizard_Solution-eazomrmcxqeysfehcgngulleshls/Build/Products/Debug-iphoneos/libTBXML-iOS.a
ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /Volumes/GhostWork/HomeWork/Sachchaudary/furniture-wizard/OpenSSL/lib/libcrypto.a for architecture armv7s
clang: error: linker command failed with exit code 1 (use -v to see invocation)
4

1 に答える 1

4

Armv7s は iPhone5 ハードウェアを指します。Xcode 4.5 GM では、これがデフォルトのアーキテクチャです。ライブラリのソースにアクセスできる場合は、アーキテクチャ armv7s を に追加する必要がありますTarget -> Architectures

ライブラリを再構築できない場合は、プロジェクトのターゲット設定とサブプロジェクトのアーキテクチャと有効なアーキテクチャから armv7s を削除してください。

ここでアプローチを試すこともできますが、質問のディレクトリが宿題ディレクトリにあることを考えると、アプリストアに提出しないと思われるので、アーキテクチャからarmv7sを除外しても問題ありません。

于 2012-09-18T07:14:59.950 に答える