Questions tagged [codelite]

CodeLite is an open source, free, cross platform IDE specialized in C, C++, PHP and JavaScript programming languages which runs best on all major Platforms.

CodeLite is an open-source, cross platform IDE for the C/C++ programming languages (build and tested on Windows XP SP3, Windows 7, Ubuntu 11.10 / 12.04, and Mac OSX 10.5.8).

CodeLite is distributed under the terms of the GPLv2 license with an exception:

License exception

Plugins developed for CodeLite (other than the ones that comes with the official installer provided by the CodeLite team), are allowed to remain closed sourced and can be distributed under any license.

Main features

From (a page on a former version of) the CodeLite website:

  • Generic support for compilers
  • Can be easily extended with plugins (several plugins are already included in the installer)
  • Built-in GDB support, with the following features included:
  • Refactoing (rename symbol / rename locals / move functions and more)
  • Subversion plugin (based on the command line tool)
  • GIT plugin
  • External Tools plugin
  • Gizmos plugin - for the creation of: C++ classes, wxWidgets projects, CodeLite plugins
  • Makefile based build system
  • Project explorer (Workspace view)
  • File Explorer
  • Imports MSVS workspace/projects and converts them to use a GNU-based makefile
  • Active-document outline
  • Sophisticated database-based Code Completion mechanism; a default database is supplied which contains symbols for wxWidgets, STL and standard headers
298 questions
0
votes
2 answers

Trying to compile with Codelite on OSX(Mountain Lion) gives missing headers

I am trying out some cross platform GUI environments and have am evaluating wxWidgets using codelite, but have gotten stuck at the very beginning. I am very new at this, if its a stupid question please say so. prerequisites are, Using OSX Mountain…
Saifis
  • 2,197
  • 1
  • 22
  • 36
-1
votes
0 answers

Mac & iCloud Drive : CodeLite refuses to use iCloud Drive folder

As far as I know, the path to the iCloud Drive is "/Users//Library/Mobile\ Documents/com~apple~CloudDocs/". Unfortunately, this path includes non-alphanumeric characters. The tool (CodeLite) I'm using cannot handle paths that contain…
t34hansen
  • 1
  • 3
-1
votes
0 answers

I installed CodeLite for Windows, but it does not start for me

I installed CodeLite for Windows, but it does not start for me, but appears in the status bar and immediately disappears. How can this be fixed? I tried to run CodeLite in my Windows and it disappers from my status bar. How can be this fixed ?
-1
votes
1 answer

How can I fix "ws2_32.h" not found error?

I am trying to write a simple socket code in codelite on windows but I can not import ws2_32.h so my project is not working and I am getting "No such file or directory".How can i fix this problem.I tried to write this in the linker options but I…
n_stckwf
  • 25
  • 7
-1
votes
1 answer

What error in my code I have which cause exceptions ignored?

I am Implementing some program error exception catching and it's not getting to work properly thus I have seen any error in my code and compiler is also not showing any warnings and error. The programs build successfully but ignored the…
Tahir
  • 59
  • 5
-1
votes
1 answer

Error while installing codelite on Ubuntu 20.04 - cannot initiate connection

I tried installing Codelite on Ubuntu 20.04 and was following the steps given here https://wiki.codelite.org/pmwiki.php/Main/Repositories#toc1, but it doesn't go beyond the second step and gives the following error : Err:3…
-1
votes
1 answer

I am getting a error in codelite when I am trying to run any cpp file other than main.cpp in my codelite project

When I create a project in codelite IDE[13.0.8], the main.cpp in the src folder of that project runs fine. But following error arises when I create a new cpp file within the same project my project name is qrec1 and the new file I tried to build…
anonymous38653
  • 393
  • 4
  • 16
-1
votes
1 answer

Can't find the text file?

Hi guys i run this code and everything is good but when i go to the containing folder i can't find the text file !!.. #include #include #include int main(){ std::ofstream out_file{"../mohamed.txt"}; …
-1
votes
1 answer

Auto insert semicolon after class definition in Codelite

When writing classes in Codelite, I get this annoying behaviour where the IDE doesn't insert a semicolon after the closing brace, which has resulted in a few annoying syntax errors when compiling. I tried looking in the program's Preferences menu…
-1
votes
1 answer

include files in Linux

I'm not good in Linux. I'm trying to build CodeLite from source. The directions on CodeLite's web site (here) are insufficient for me to perform the build. I think I am just lacking knowledge of the build system in Linux. The build step I am at…
Kyle Sweet
  • 306
  • 1
  • 3
  • 15
-1
votes
2 answers

Howto install the latest CodeLite in openSUSE

Hi I've tried to install the latest codelite but when I try to open it, it doesn't. I followed the instructions on the site but no luck. I'm using openSUSE 13.2 64-bit
-1
votes
1 answer

Open GL compiles on Codelite Windows 7, but no ouput displayed

I am trying this sample open gl program on my codelite ide. #include #include #include #include GLenum doubleBuffer; GLint thing1, thing2; static void Init(void) { glClearColor(0.0, 0.0, 0.0,…
pavan
  • 23
  • 9
-1
votes
1 answer

CodeLite IDE V6.1 : highlight selected word/string in file

were can i enable this feature? There is no change when i enable the checkbox under Editor Settings->Bookmarks->"... highlit matching words". Any hint will be welcome. Best Regards Lars
larsDD
  • 41
  • 1
  • 2
  • 8
-1
votes
3 answers

A random text as output

My goal is a function that returns the same text as I wrote in stdin. As a result of compilation of the code below: #include char chain[990]; int znaki() { scanf("%s", chain); int i=0; do{ putchar(chain[i]); …
nuser
  • 1
  • 2
-1
votes
3 answers

printf of int value returns only first character

When I run the code below i get this output: Podaj ilosc liczb: 12 Podaj liczbe nr. 0 : 53 Podaj liczbe nr. 1 : 24 Podaj liczbe nr. 2 : 53 Podaj liczbe nr. 3 : 24 Podaj liczbe nr. 4 : 66 Podaj liczbe nr. 5 : 99 Podaj liczbe nr. 6 : 3 Podaj liczbe…
nuser
  • 1
  • 2
1 2 3
19
20