Set Build path in Eclipse for ndk program

谁说胖子不能爱 提交于 2019-11-26 11:14:38

问题


This error was shown when I build a android application program in Eclipse:

14:43:33 **** Incremental Build of configuration Default for project com.***.NDKDemo ****
ndk-build all 
Cannot run program \"ndk-build\": Unknown reason

Error: Program \"ndk-build\" not found in PATH
PATH=[/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games]

14:43:33 Build Finished (took 16ms)

Please give me a solution to include the build path in Eclipse..


回答1:


//goto Preference Android NDK and choose your ndk location

or

in your hidden .bashrc file add this below line

export NDK_PATH=/home/padmakumar/android-ndk-r7b



回答2:


If your NDK location is already set, the builder in the toolchain editor may be wrong. Go to project properties, C/C++ Build | Tool Chain Editor and select Android Builder as current builder.




回答3:


The path for ndk-build is not set in your case. Open your .bashsrc file ( from root folder, it will be in hidden format, so Edit Menu and selection Show Hidden Files ) with Editor, go to last line and add following code,

NDK_HOME=/opt/android-ndk-r8
export NDK_HOME

Now restart your Computer and try again. For more information see my this answer.



来源:https://stackoverflow.com/questions/11825534/set-build-path-in-eclipse-for-ndk-program

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!