Hi I am new to Android NDK Development.

MacBook-Pro:JNIexample sk$ ndk-build
usage: dirname path
gmake: /Users/sk/build/core/build-local.mk: No such file or directory
gmake: *** No rule to make target `/Users/sk/build/core/build-local.mk'.  Stop.

Why do I get his error?

link|improve this question

feedback

3 Answers

So I was having the same trouble, and it looks like if I have any directory which is a part of full dir-path which has dir-name with space (' ') in between then 'ndk-build' wont be able to resolve paths. So my directory name "development tools" wasnt good enough so I changed it to "developmenttools" and it worked. If I hard-code the path in 'ndk-build' then it was working so found out the reason.

link|improve this answer
Will check and tell. Thank you. – Ragunath Jawahar Apr 19 '11 at 8:33
feedback

You need to specify the project you want to build. Like this: ndk-build -C location_of_project.

For example, to build the hello-neon sample that comes with the NDK you would go to your ndk install root and do ndk-build -C samples/hello-neon

link|improve this answer
MacBook-Pro:~ sk$ ndk-build -C /Users/sk/Desktop/JNIExample/jni/ usage: dirname path gmake: Entering directory /Users/sk/Desktop/JNIExample/jni' gmake: /Users/sk/build/core/build-local.mk: No such file or directory gmake: *** No rule to make target /Users/sk/build/core/build-local.mk'. Stop. gmake: Leaving directory `/Users/sk/Desktop/JNIExample/jni' NOTE: The jni folder contains the Application.mk file – Ragunath Jawahar Feb 8 '11 at 20:57
Try ndk-build -C /Users/sk/Desktop/JNIExample/ – Ryan Reeves Feb 8 '11 at 21:04
feedback

The ndk-build tool is actually just a wrapper that calls gmake with the build-local.mk file. It finds the build-local.mk file by creating a relative path rooted at the location of the ndk-built tool. Sounds like you don't have the full NDK installed, or maybe moved the ndk-build tool without moving the rest of the NDK contents?

link|improve this answer
I didn't move any of the tools. Just followed the instructions on the website. – Ragunath Jawahar Feb 26 '11 at 5:41
Sounds like the ndk-build isn't finding the local build script for some reason however. I assume /Users/sk/build/core/build-local.mk is present and readable? Try putting some debugging in ndk-build to figure out what's throwing it off. Without some more info I don't have any other suggestions however. – mikerowehl Feb 26 '11 at 6:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.