I'm facing an issue on compiling the NDK code. I'm using Ubuntu 10.04 x64. Basically i have performed the following steps:
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
Configuration failed. This could reflect a misconfiguration of your toolchains, improper options selected, or another problem. If you don't see any useful error messages above, the next step is to look at the configure error log file (config.err) to determine what configure was trying to do when it died. VP8 prepare stage failed.
Have anybody facing this issue?