0

wunder radio プロジェクトをダウンロードしました。ワークスペースに MMS プロジェクトをコピーしました。mms_connect Xcode4 を使用しようとすると、次のエラーが表示されます。

Ld /Users/Alex/Library/Developer/Xcode/DerivedData/test1-gevnovbiecnctxguaabsznvdybxa/Build/Products/Debug-iphonesimulator/test1.app/test1 通常の i386 cd /Users/Alex/Source/test1 setenv MACOSX_DEPLOYMENT_TARGET 10.6 setenv PATH "/Developer /Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"

/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/llvm-gcc-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk -L/Users/Alex/ Library/Developer/Xcode/DerivedData/test1-gevnovbiecnctxguaabsznvdybxa/Build/Products/Debug-iphonesimulator -F/Users/Alex/Library/Developer/Xcode/DerivedData/test1-gevnovbiecnctxguaabsznvdybxa/Build/Products/Debug-iphonesimulator -filelist /Users/ Alex/Library/Developer/Xcode/DerivedData/test1-gevnovbiecnctxguaabsznvdybxa/Build/Intermediates/test1.build/Debug-iphonesimulator/test1.build/Objects-normal/i386/test1.LinkFileList -mmacosx-version-min=10.6 -Xlinker - objc_abi_version -Xlinker 2 -lz.1 -framework UIKit -framework Foundation -framework CoreGraphics -o /Users/Alex/Library/Developer/Xcode/DerivedData/test1-gevnovbiecnctxguaabsznvdybxa/Build/Products/Debug-iphonesimulator/test1.app/test1

アーキテクチャ i386 の未定義のシンボル: "_mms_connect"、参照先: -[test1AppDelegate application:didFinishLaunchingWithOptions:] in test1AppDelegate.o ld: アーキテクチャ i386 のシンボルが見つかりません collect2: ld が 1 つの終了ステータスを返しました

それを解決する考えはありますか?

4

1 に答える 1

0

libmms のアーキテクチャが間違っているため、リンカが libmms へのリンクに失敗しているようです。ビルドしているプロジェクトは、iPhone シミュレーター用のようです。シミュレーターはコンピューター上で実行されるため、アーキテクチャーは i386 (または、使用しているマシンによっては x86_64) です。したがって、基本的には i386 を使用してコンパイルしていますが、リンカが libmms にリンクしようとしたときに、libmms が同じアーキテクチャを使用してコンパイルされていることがわかりませんでした。

iOS デバイスは armv6 または armv7 アーキテクチャを使用し、シミュレーターは i386 を使用するため、3 つのアーキテクチャーすべてに対して外部静的ライブラリーをビルドする必要があるため、実際のデバイス用のビルドとシミュレーター用のビルドを切り替えるのは非常に困難です。

i386 アーキテクチャを使用して libmms を再構築する必要があるでしょう。

于 2011-10-01T11:42:13.853 に答える