2016-05-10 16 views
0

gstreamer-1.0-devel-1.8.1-ios-universal-pkgをダウンロードし、iOSチュートリアルをコンパイルして実行しようとしています。私はそれをXcodeの「修正」を持っている場合、私はその後、その後、gstreamer iosチュートリアルのエラー

Could not create compact unwind for _ffi_call_unix64: does not use RBP or RSP based frame

とアーキテクチャx86_64のための未定義のシンボルの束を取得し、ライン1028上gst_ios_init()

implicit declaration of function get_registry_get_default is invalid in C99

エラーが発生します。

答えて

0

あなたはタイプミスがあります:get_registry_get_default()ではなくgst_registry_get_default()です。それがXcodeが実際にそこに現れているのだろう。

他の未定義の記号は何ですか?

+0

アーキテクチャのARMv7のための未定義のシンボル: "_gst_plugin_mad_register" から参照:中 _gst_ios_init gst_ios_init.o ld:アーキテクチャarmv7のシンボルが見つかりません clang:エラー:リンカコマンドが終了コード1で失敗しました(呼び出しを見るには-vを使用してください)。 –

0

私も第三のチュートリアルと問題が生じています:

Undefined symbols for architecture x86_64: 
    "_gst_plugin_liveadder_register", referenced from: 
     _gst_ios_init in gst_ios_init.o 
ld: symbol(s) not found for architecture x86_64 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 

、その後、チュートリアル4:

Undefined symbols for architecture x86_64: 
    "_gst_plugin_fragmented_register", referenced from: 
     _gst_ios_init in gst_ios_init.o 
ld: symbol(s) not found for architecture x86_64 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 
関連する問題