Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在cocos2dx使用eclipse. 我尝试通过编译cygwin terminal,但出现以下错误。
cocos2dx
eclipse
cygwin terminal
错误:您的 GNUMAKE 变量被定义为无效名称:E:\cygwin\bin 请修复它以指向有效的 make 可执行文件(例如 /usr/bin/make)
我想知道如何将gnu make变量设置为有效名称。我的环境变量设置为e:\cygwin\bin\make
gnu make
e:\cygwin\bin\make
GNUMAKE应设置为 cygwin 识别的路径。要找出答案,您可以which在 cygwin 终端中使用:
GNUMAKE
which
$ which make /cygdrive/e/cygwin/bin/make
您还可以使用cygpath创建正确的路径:
cygpath
$ cygpath 'e:\cygwin\bin\make' /cygdrive/e/cygwin/bin/make