The error pane insists that the build ended successfully when the build pane outputs compiling errors. Despite having errors, the build pane at the end of it says 0 errors and 0 warnings too. I'll post some screenshots I find relevant below. Any help alleviating this anomaly would be appreciated!
0 errors and 0 warnings detected when build produces errors
-
- CodeLite Curious
- Posts: 2
- Joined: Sun Aug 21, 2011 12:46 am
- 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: 0 errors and 0 warnings detected when build produces errors
This is because the unusual path you are using for your sources
Remove the apostrophe from the path or add it to the regex and it will work
Also: as a general rule, don't use spaces in paths - (this can cause problem for some of the MinGW toolchains)
Eran
Code: Select all
Taco's Workspace
Also: as a general rule, don't use spaces in paths - (this can cause problem for some of the MinGW toolchains)
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 2
- Joined: Sun Aug 21, 2011 12:46 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: 0 errors and 0 warnings detected when build produces errors
That worked, thank you. I can't believe it was something that simple to fix, and yet I had so much trouble with it. Anyways, thank you again for your reply.