Program “make” not found in PATH

this article had helped me.

thanks.

Program “make” not found in PATH


         up vote11down votefavorite

I‘m having the Program "make" not found in PATH error in eclipse. I checked the path variable which is:

C:\cygwin\bin;
%JAVA_HOME%\bin;
%ANT_HOME%\bin;
%ANDROID_SDK%\tools;
%ANDROID_SDK%\platform-tools;
%ANDROID_NDK%;
%CommonProgramFiles%\Microsoft Shared\Windows Live;
C:\Program Files\NVIDIA Corporation\PhysX\Common;
%SystemRoot%\system32;
%SystemRoot%;
%SystemRoot%\System32\Wbem;
%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;
C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;
C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;
C:\Program Files\Git\cmd

The PATH starts with the folder which contains make (I checked and
make.exe is in there), but eclipse still goes Program "make" not found in PATH.

I have tried changing the path and restarting several times but nothing seems to change.

eclipse
make


share|improve
this question

edited
Jun 16 ‘14 at 4:10

Jason Aller

2,44371723

asked
Jul 20 ‘12 at 12:12

aerlfredith

1932414

 

 

Do you have a
make.exe file somewhere in your path, e.g. in C:\cygwin\bin ? You should install GNU make otherwise.                 –                     
Basile Starynkevitch                 Jul 20 ‘12 at 12:14                    
                                                                            
3                          

Do not multipost please . You have already asked this question at:
eclipse.org/forums/index.php/m/773854 (the last comment)                 –                     
Adel Boutros                 Jul 20 ‘12 at 12:17                                                                            

add a comment |             
        

6 Answers                                 6

activeoldestvotes


         up vote8down vote

You may try altering toolchain in case if for some reason you can‘t use gcc. Open
Properties for your project (by right clicking on your project name in the
Project Explorer), then C/C++ Build > Tool Chain Editor. You can change the current builder there from
GNU Make Builder to CDT Internal Builder or whatever compatible you have.


share|improve
this answer

answered
Oct 17 ‘14 at 8:07

Wojciech Fornal

11113

时间: 2024-12-14 06:49:38

Program “make” not found in PATH的相关文章

Eclipse 报错:Error: Program "sh" not found in PATH

SDK和ADT为22.6.2版本 工程为4.4.2 在编译一个Launcher时,报错如下: sh ndk-build clean Cannot run program "sh": Launching failed Error: Program "sh" not found in PATH PATH=...... 在网上看了一下,一直以为是什么GCC的问题,多次尝试后无果,后来查阅了一些资料后,说是和NDK有关系,马上配置一下,问题解决了,非常感谢同事的帮忙! Wi

eclipse cdt Program "make" not found in PATH

配制eclipse c++环境,安装mingw,配制环境变量后编译报错“eclipse cdt Program "make" not found in PATH” 解决方法: C:\MinGW\bin下 1.把mingw32-make.exe改为make.exe 2.把mingw32-g++.exe改成mingwg++ 但编译还是通不过,出现奇怪的错误 1.右键点击项目名选择Build Project 3.右键点击项目名选择properties:C/C++ Build > Too

【转】报错:Program "sh" not found in PATH

原文网址:http://www.cnblogs.com/SadNight/p/3406201.html (1) 报错:Program "sh" not found in PATH 参考原文:http://vin-mail.blog.163.com/blog/static/37895280201211932919513/ 如果你按照我的方法 先配置了cygwin的环境变量,在打开Eclipse导入工程是不会出这个问题的,如果是打开Eclipse后你在配置的重启Eclipse就行了 那个s

eclipse: Program "g++" not found in PATH

gdb命令行调试虽然还行,但是确实不如图形界面的直观...个人还是不习惯,就开始鼓捣eclipse的c/c++IDE(VS2013安装需要IE10,蛋疼,懒得弄) Build一个C工程的时候报错.我安装了MinGW并且安装了C编译器,但是没有安装C++编译器,也就是只有gcc.exe但是没有g++.exe 并且MinGW的bin目录也配置到了PATH变量中. 解决办法: 打开MinGW Installer,选中C++编译器,下载安装即可,如图

Node.js 初识 Path 模块

Node.js 提供了一些处理 文件/文件夹 路径的公用方法,可以这样引入: var path = require('path'); path.basename(path[, ext])   ---> 返回值:String path.basename() 方法返回路径的最后一部分,与 Unix 的 basename 命令相似 参数: path:String ext:String,可选的文件拓展名,如果提供了ext 参数,则返回值中不包括拓展名 当 path 不是一个字符串或者提供了ext 但不是

Node.js的Path对象

NodeJS中的Path对象,用于处理目录的对象,提高开发效率.用NodeJS的Path命令,与使用Linux下的shell脚本命令相似.引入path对象: var path = require('path'); 比较实用的方法: 格式化路径 path.normalize(p)特点:将不符合规范的路径格式化,简化开发人员中处理各种复杂的路径判断 示例: path.normalize('/foo/bar//baz/asdf/quux/..'); => '/foo/bar/baz/asdf' 路径合

Nodejs中路径处理模块path如何使用?

在nodejs开发中,path是个使用频率很高,但却让人又爱又恨的模块.部分因为文档说的不够清晰,部分因为接口的平台差异性. 将path的接口按照用途归类,仔细琢磨琢磨,也就没那么费解了. 获取路径/文件名/扩展名 . 获取路径:path.dirname(filepath) . 获取文件名:path.basename(filepath) . 获取扩展名:path.extname(filepath) 获取所在路径 例子如下: var path = require('path');var filep

Node入门教程(8)第六章:path 模块详解

path 模块详解 path 模块提供了一些工具函数,用于处理文件与目录的路径.由于windows和其他系统之间路径不统一,path模块还专门做了相关处理,屏蔽了彼此之间的差异. 可移植操作系统接口(POSIX) 可移植操作系统接口(英语:Portable Operating System Interface,缩写为POSIX),是IEEE为要在各种UNIX操作系统上运行软件,而定义API的一系列互相关联的标准的总称,其正式称呼为IEEE Std 1003,而国际标准名称为ISO/IEC 994

【bugRecord4】Fatal error in launcher: Unable to create process using '""D:\Program Files\Python36\python.exe"" "D:\Program Files\Python36\Scripts\pip.exe" '

环境信息: python版本:V3.6.4 安装路径:D:\Program Files\python36 环境变量PATH:D:\Program Files\Python36;D:\Program Files\Python36\Scripts; 问题描述:命令行执行pip报错 解决方法: 1.切换到D:\Program Files\Python36\Scripts 2.执行python pip.exe install SomePackage进行安装 3.安装成功后执行pip仍报错 4.查看安装成