“ERROR: You are using a non-Cygwin compatible Make program.
Currently using: C:/cygwin/bin/make
To solve the issue, follow these steps:
1. Ensure that the Cygwin ‘make’ package is installed.
NOTE: You will need GNU Make 3.81 or later!
2. Define the GNUMAKE environment variable to point to it, as in:
export GNUMAKE=/usr/bin/make
3. Call ‘ndk-build’ again.”
If the ‘make’ is installed, this error probably stems from a bug. You need to move your ndk to a folder that does not have spaces in the path as well as your project.
For example:
from
C:\Program Files\Android\android-ndk-r5c
to
C:\Android\android-ndk-r5c
Then define the GNUMAKE environment variable as described in the error message text.
原文链接: