Android 用の cSipSimple ソースをビルドしようとしています。cSipSimple のwiki ページの作成方法に記載されている手順に従っていると思います。しかし、残念ながら私はメイクエラーに直面しています。コマンドログ情報は次のとおりです。
Now at patch 001toolchain_static_lib.diff
cd build/armeabi; \
if [ "build/armeabi/config.mk" = "build/armeabi/config.mk" ]; then TGT=armv5te-android-gcc; fi; \
if [ "build/armeabi-v7a/config.mk" = "build/armeabi/config.mk" ]; then TGT=armv7-android-gcc; fi; \
if [ "build/x86/config.mk" = "build/armeabi/config.mk" ]; then TGT=x86-android-gcc; fi; \
if [ "build/mips/config.mk" = "build/armeabi/config.mk" ]; then TGT=mips32-android-gcc; fi; \
BUILD_PFX=jni/libvpx/build/armeabi/ ../../sources/configure --target=$TGT --disable-examples --sdk-path=
Not a directory:
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.
make[1]: *** [build/armeabi/config.mk] Error 1
make[1]: Leaving directory `/home/alexchengalan/android/files/CSipSimple-trunk/CSipSimple/jni/libvpx'
make: *** [jni/libvpx/sources] Error 2
エラーは上記で指摘されていると思います--disable-examples --sdk-path=
Not a directory:
。しかし、私はそれが何を意味するのか分かりません。
また、次の行を .bashrc ファイルに追加しました
export ANDROID_NDK=/home/alexchengalan/android/files/android-ndk-r10d/
export ANDROID_SDK=/home/alexchengalan/android/files/android-sdk-linux/
export PATH=$PATH:$ANDROID_SDK/tools:$ANDROID_SDK/platform-tools:$ANDROID_NDK
誰かがこの問題から私を助けてくれるといいですね。