NDK コードのコンパイルに関する問題に直面しています。Ubuntu 10.04 x64 を使用しています。基本的に、次の手順を実行しました。
Download the NDK. (I also tried the last one but the same issue)
Open terminal and make
sudo -s
. Input the root password.apt-get install autoconf automake libtool pkg-config
Download source code through command:
git clone git://git.linphone.org/linphone-android.git --recursive
Go to my project root:
cd /home/silviu/linphone-android
In my project root:
export PATH=/home/silviu/androidndk:$PATH
Run
./prepare_sources.sh
in my project root.
I receive an error in prepare_sources.sh
:
Configuring selected codecs
enabling vp8_encoder
enabling vp8_decoder
Configuring for target 'armv7-android-gcc'
enabling armv7
enabling armv6
enabling armv5te
enabling fast_unaligned
enabling realtime_only
Toolchain is unable to link executables
構成に失敗しました。これは、ツールチェーンの構成ミス、不適切なオプションの選択、または別の問題を反映している可能性があります。上記の有用なエラー メッセージが表示されない場合、次のステップは configure エラー ログ ファイル (config.err) を調べて、configure が停止したときに何をしようとしていたかを判断することです。VP8 準備ステージが失敗しました。
この問題に直面している人はいますか?