Issue
What I'm trying to do is successfully compile native code using Cygwin. The error message i get when i run type my directory to the ndk-build in the terminal is
ERROR: Cannot find 'make' program. Please install Cygwin make package or define the GNUMAKE variable to point to it.
This is what im typing into the Cygwin terminal:
C:/users/kwesi/desktop/android-ndk-r8/ndk-build
My Build Path is: C:\cygwin\bin;C:\Users\Kwesi\Desktop\android-ndk-r8\ndk-build;
I've installed the make using this youtube video tutorial, so I am pretty sure it is installed correctly. http://www.youtube.com/watch?v=jqJGxJJq87w&list=FL2bdE2OcpySONpqzf5OsWNQ&index=1&feature=plpp_video
Solution
You probably just need to install the make
package.
Run the setup.exe
command that you used to install Cygwin in the first place, and select "make".
First, to confirm that this is the problem, run make
from the terminal.
You'll likely have to install some other packages as well.
Answered By - Keith Thompson
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.