llvm toolchain not found!
path: /path/to/android-ndk-r9b/toolchains/llvm-3.3/prebuilt/darwin-x86 or path: /path/to/android-ndk-r9b/toolchains/llvm-3.3/prebuilt/darwin-x86_64 are not valid!
我是mac环境Python2.7
我按照tolua readme下载了ndk,然后加入环境变量,但是报了上面的路径找不到错误,求大家指点一下!!!!!!
======================readme.mdown=======================
On MAC:
- The OSX 10.9 has a built-in python2.7 and if your os don’t have python2.7 then use (http://brew.sh/) to install the python and use pip install the python dependencies.
brew install python
- Install python dependices by pip.
sudo easy_install pip
sudo pip install PyYAML
sudo pip install Cheetah
- Download (http://dl.google.com/android/ndk/android-ndk-r9b-darwin-x86_64.tar.bz2) from (http://developer.android.com/tools/sdk/ndk/index.html)
- Run
export NDK_ROOT=/path/to/android-ndk-r9b
./genbindings.py
=================================