Hi,
I'm new in programming with c++. At the university we work with CodeLite and so I wanted to install it at home on Windows 7 (I also tried at Windows XP, same problems). Each time I try to compile my project I get this error:
----------Build Started--------
C:\Windows\system32\cmd.exe;C:\users\restricted area\desktop\info\javaprogs\ /c ""mingw32-make.exe" -j 2 -f "aufgaben_wsp.mk""
Failed to start build process, command: C:\Windows\system32\cmd.exe;C:\users\restricted area\desktop\info\javaprogs\ /c ""mingw32-make.exe" -j 2 -f "aufgaben_wsp.mk"", process terminated with exit code: 0
Now I don't know what to do? And why tries it to load my java compiler?
Thanks for answers and solutions.
Failed to start build process
-
- CodeLite Curious
- Posts: 2
- Joined: Fri Mar 12, 2010 11:11 pm
- Genuine User: Yes
- IDE Question: c++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Failed to start build process
This line should be like this:moepi wrote:C:\Windows\system32\cmd.exe;C:\users\restricted area\desktop\info\javaprogs\ /c ""mingw32-make.exe" -j 2 -f "aufgaben_wsp.mk""
Code: Select all
C:\Windows\system32\cmd.exe /c ""mingw32-make.exe" -j 2 -f "aufgaben_wsp.mk""
To fix this:
- Close codelite
- Open Windows environment variables settings
- Search for the variable COMSPEC - if you dont have it, add one
- Sets its value to C:\Windows\system32\cmd.exe
- Restart codelite
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 2
- Joined: Fri Mar 12, 2010 11:11 pm
- Genuine User: Yes
- IDE Question: c++
- Contact:
Re: Failed to start build process
It works now fine. Thanks