我的问题是当我尝试在cygwin和android-ndk的帮助下编译我的ocr代码。然后它向我展示了非cygwin兼容make程序错误的错误。
当我在cygwin上写这个命令时:
/cygdrive/c/android-ndk-r6b/ndk-build
然后它显示我这样的错误:
ERROR : You are using a non-Cygwin Compatible Make program.
Currently using C:/cygwin/bin/make
To solve the issue , follow this steps :
1. Ensure that the Cygwin 'make' package is installed.
Note : You will nedd 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.
我没有在路径中使用任何空格意味着我的android-ndk路径是“C:/ android-ndk-r6b”所以它不包含任何空格。
答案 0 :(得分:0)
在这里黑暗中拍摄,但您是否真的尝试过按照建议定义GNUMAKE
变量?
cd /cygdrive/c/android-ndk-r6b
export GNUMAKE=/usr/bin/make
./ndk-build