Hey,
WHen i load Dev-C++ a box comes up and says "There doesn't seem to be a GNU Make File in Path or in Dev-C++'s bin... " how do i make a GNU Make File?
wilko1995
Quick clarification: the popup is complaining that Dev-C++ cannot find the GNU "make" program, not that you must write a Makefile. , you do not need to "make a GNU Make File" — you need a GNU make executable (often shipped as mingw32-make.exe or make.exe) available to Dev-C++. 's link helped resolve this for you; below is a concise checklist and troubleshooting tips so others with the same message can fix it reliably.
Checklist to fix the error
Dev-Cpp\MinGW\bin\mingw32-make.exe or Dev-Cpp\bin\make.exe). bin folder to your Windows PATH (System -> Advanced -> Environment Variables) or tell Dev-C++ exactly where it is: Tools -> Compiler Options -> Programs -> set the Make program to the full path of the make executable. Restart Dev-C++ after changing PATH. mingw32-make, or obtain a Windows GNU make binary and place it in a bin folder that is on PATH (or in Dev-C++'s bin). Prefer configuring the Make program path over renaming files.Quick checks and troubleshooting
mingw32-make --version
where make
where mingw32-make Jump to Post— abhi_elementx 1This might help: http://www.cplusplus.com/forum/beginner/5099/
no probs
Cheers
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.