Page 1 of 1

[ANN] CodeLite 6.0 is available for download

Posted: Mon Jun 02, 2014 10:17 pm
by eranif
Hi All,

I am very happy to announce that CodeLite 6.0 is available for download!
It contains many new exciting features and bug fixes

A brief summary of whats new in CodeLite 6.0
Visit our download page to download it

One of the major features in this release, is the support for LLDB Debugger for OSX / Linux
This makes CodeLite one of the first open source IDEs to support LLDB!

Thanks,
Eran

Re: [ANN] CodeLite 6.0 is available for download

Posted: Wed Jun 04, 2014 8:46 am
by eranif
EDIT:
The Installers for Windows / OSX were updated due to a major bug in the built-in Makefile generator reported here: http://forums.codelite.org/viewtopic.php?f=3&t=2560
I expect that the Linux binaries will follow soon.

If you prefer not to update your codelite installer (or an update it not available for your OS yet) you can workaround this in the following manner:
From the main menu:

Settings -> Build Settings -> Build Systems

and enable the option:

Use asterisk (*) for the clean target

Eran

Re: [ANN] CodeLite 6.0 is available for download

Posted: Fri Jun 06, 2014 11:00 pm
by BOURGER
Hello,

I am a newbie with CodeLite and wanted to test it with the last release 6.0.
But I have worked on other IDEs such Code::Blocks or Visual C++.

My first try was a console program in C (not C++).
This program was the well known "Hello World" which is the default when a new project is opened.
I am a bit disappointed as this program does not compile.

For information, I installed CodeLite as follow:
F:\CodeLite
F:\MinGW-4.8.1

And My project is located as:
F:\Essais_CL/Test

The BuildLog.txt is the following:

C:\WINDOWS\system32\cmd.exe /c "F:/MinGW-4.8.1/bin/mingw32-make.exe -j2 -e -f Makefile"
----------Building project:[ Test - Debug ]----------
mingw32-make[1]: Entering directory 'F:/Essais_CL/Test'
F:MinGW-4.8.1bingcc.exe: not found
mingw32-make[1]: *** [Debug/main.c.o.d] Error 127
mingw32-make[1]: *** Waiting for unfinished jobs....
Test.mk:96: recipe for target 'Debug/main.c.o.d' failed
mingw32-make[1]: Leaving directory 'F:/Essais_CL/Test'
mingw32-make.exe: *** [All] Error 2
Makefile:4: recipe for target 'All' failed
1 errors, 0 warnings

I thought I made a mistake and I cleaned all my project. I started again and got the same error.
I think that the problem comes from the new release not really tested for the C standard.
Am I wrong ?

Re: [ANN] CodeLite 6.0 is available for download

Posted: Fri Jun 06, 2014 11:50 pm
by eranif
BOURGER wrote:C:\WINDOWS\system32\cmd.exe /c "F:/MinGW-4.8.1/bin/mingw32-make.exe -j2 -e -f Makefile"
----------Building project:[ Test - Debug ]----------
mingw32-make[1]: Entering directory 'F:/Essais_CL/Test'
F:MinGW-4.8.1bingcc.exe: not found
mingw32-make[1]: *** [Debug/main.c.o.d] Error 127
mingw32-make[1]: *** Waiting for unfinished jobs....
Test.mk:96: recipe for target 'Debug/main.c.o.d' failed
mingw32-make[1]: Leaving directory 'F:/Essais_CL/Test'
mingw32-make.exe: *** [All] Error 2
Makefile:4: recipe for target 'All' failed
1 errors, 0 warnings
Everything is in the compiler output.
Please check that the paths to the tools are set correctly.
Settings -> Build Settings -> Compilers
Select your compiler and make sure that the paths to the tools do exist.
BOURGER wrote:I think that the problem comes from the new release not really tested for the C standard.
CodeLite is not a compiler, its an IDE. so it does not really understand what "C standard" is.
BOURGER wrote:m I wrong ?
Yes

Eran

Re: [ANN] CodeLite 6.0 is available for download

Posted: Sat Jun 07, 2014 8:24 pm
by BOURGER
Hello,

Finally after reading some topics in the HELP section I tried to add the variable SHELL=CMD.EXE in the Environment variables folder.
Doing that seems to solve the problem.
May I suggest to add this variable in the next release of CodeLite ?

Thank you.