Page 1 of 1

'makedir' is not recognized

Posted: Thu Apr 28, 2016 5:24 am
by Speedicus
Codelite v 9.1.6 (also experienced in 9.1)
No
Windows 10



I'm experiencing problems with simply building/running my programs. I update to the recent stable build and the problem started by giving me the error and preventing the run from happening. I thought maybe it was fixed in 9.1.6 but the problem still persists.

Code: Select all

C:\WINDOWS\system32\cmd.exe /C C:/TDM-GCC-64/bin/mingw32-make.exe -j4 SHELL=cmd.exe -e -f  Makefile
"----------Building project:[ matrices - Debug ]----------"
mingw32-make.exe[1]: Entering directory 'C:/Users/dylan/Desktop/Workspace/Workspace/matrices'
'makedir' is not recognized as an internal or external command,
operable program or batch file.
mingw32-make.exe[1]: *** [Debug/.d] Error 1
mingw32-make.exe[1]: *** Waiting for unfinished jobs....
matrices.mk:91: recipe for target 'Debug/.d' failed
<built-in>: fatal error: opening dependency file ./Debug/main.c.o.d: No such file or directory
compilation terminated.
mingw32-make.exe[1]: *** [Debug/main.c.o.d] Error 1
matrices.mk:102: recipe for target 'Debug/main.c.o.d' failed
mingw32-make.exe: *** [All] Error 2
mingw32-make.exe[1]: Leaving directory 'C:/Users/dylan/Desktop/Workspace/Workspace/matrices'
Makefile:4: recipe for target 'All' failed
====1 errors, 0 warnings====

Re: 'makedir' is not recognized

Posted: Thu Apr 28, 2016 9:55 am
by eranif
makedir exists under the installation folder of CodeLite.
If 'make' can't find it, then it must be something terribly wrong in your environment.

To check some:
- Are you running CodeLite from within MSYS or Cygwin shell?
- Did you change anything in the environment variable (settings->environment variables?)

Eran

Re: 'makedir' is not recognized

Posted: Thu Apr 28, 2016 2:45 pm
by Speedicus
Ah yes, I did change the environment variables. I removed the changes and the program builds successfully. Thanks.