English 中文(简体)
cygwin 找不到 make 程序
原标题:cygwin cannot find make program

我想做的是使用 Cygwin 成功编译本地代码。 当我在终端中输入到 ddk- building 的目录时, 我得到的错误信息是 :

ERROR: Cannot find make program. Please install Cygwin make package or define the GNUMAKE variable to point to it.

这是输入 Cygwin 终端时输入的内容 :

C: /用户/kwesi/台式电脑/台式电脑/和机器人dk-r8/ndk-建造

My Build Path is: C:cygwinin;C:UsersKwesiDesktopandroid-ndk-r8 dk-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

最佳回答

您可能需要安装 make 软件包 。

运行您用来安装 Cygwin 的 < code> setup. exe 命令, 并选择“ make ” 。

首先,要确认这是问题所在, 请从终端中运行 < code> make

你可能还得安装一些其他包件。

问题回答

你在用窗户吗? 我用的是7号窗口, 使用cygwin也有同样的问题。 我安装了MinGW, 使用cygwin, 它正在寻找一个与cygwin兼容的制造程序。 下载了 GUMAK 并设置了一条路径, 但问题仍然存在。 所以我尝试了使用 MinGW, 打开 msys.bat 和 voila, 现在起作用了 。

我通过在系统环境变量中添加cygwinin路径解决了这个问题。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签