我有一个带有原生部分的 android 项目。现在我试图让 eclipse 编译所有东西,但是在本机编译期间它给了我这个错误:
sh ndk-build all
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.
现在我可以从 Cygwin 编译它并且它可以工作。它也可以在我的另一台计算机上以完全相同的路径从 eclipse 中运行。
我发现如果我ndk-build
从 cygwin 启动它没问题,但如果我启动“sh ndk-build”它会给我 Eclipse 的错误。
我认为这是问题所在,但我不知道为什么在命令前面加上sh
它不起作用(也用 bash 前面加上它会给我错误)。
有人可以帮忙吗?
先感谢您。