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
1
vote
1 answer

problems building CodeLite

Having a heck of a time trying to build CodeLite for an ARM-based Ubuntu Linux target. (Build instructions here: http://codelite.org/Developers/Linux). I get an error from CMAKE that says Could not locate GTK2. Looking in the CmakeLists.txt file I…
Kyle Sweet
  • 306
  • 1
  • 3
  • 15
1
vote
1 answer

How to integrate Intel C/C++ compiler kit with other IDEs other than Visual Studio?

I have C/C++ compatible IDEs such as,CODE-BLOCKS,CODELITE and Netbeans and I installed latest Intel Parallel Studio XE 2017,I tried to setup compiler settings and linker settings for Intel compiler environment with particular IDE,but all failed to…
1
vote
0 answers

getting build commands from codelite IDE

I would like to run a c++ program on my school's linux cluster, but first I need to build the executable on their machine (scp'ing my executable over doesn't seem to work). Usually I build everything on my machine with an IDE. So how do I get the…
Taylor
  • 1,797
  • 4
  • 26
  • 51
1
vote
1 answer

Using box2d in Codelite IDE

UPDATE: I've gone through and added some apparently missing dependecies of in the files mentioned in the build log. Now I'm down to what appears to be a problem with my cwchar header itself, where it's missing a bunch of declarations.…
Anapse
  • 11
  • 2
1
vote
1 answer

codelite projects is not building in ubuntu-14.04 LTS

I am using editor codelite-9.1.0 version. I have 20 project attached with a workspace.All project were building properly before earsing the OS from my machine. I am using ubuntu-14.04 LTS os. Now some of the project were building properly and some…
smruti
  • 11
  • 4
1
vote
2 answers

how to use OpenMP in CodeLite?

I want to use OpenMP in CodeLite, but it doesn't work. I have already choose -fopenmp in compile setting(actually it's the default setting). My program is as follows: #include #include int main() { #pragma omp parallel { …
yazoo
  • 11
  • 3
1
vote
1 answer

C++ CodeLite Enable Multithreading?

I'm experiencing a bit of strange behaviour when I try to compile any program that uses multithreading in CodeLite. I get the error: terminate called after throwing an instance of 'std::system_error' what(): Enable multithreading to use…
Dusty
  • 413
  • 6
  • 17
1
vote
4 answers

Can't build the new wxWidgets. What should i do?

I'm feeling a bit dumb, but i can't build the new wxWidgets. I want to use codelite + mingw + wxWidgets, so i download the latest releases: CodeLite 9.1.3 (http://downloads.codelite.org/downloads.php?windows_weekly_64) The installer make me download…
Parduz
  • 662
  • 5
  • 22
1
vote
1 answer

Linking CodeLite and OpenGL with freeglut on Linux

I'm trying to set up CodeLite IDE to use the OpenGL libraries I installed. The headers are in /usr/include/GL - here's the contents of ls: freeglut_ext.h freeglut_std.h glext.h gl_mangle.h glu_mangle.h glxext.h glxint.h glxmd.h …
subdavis
  • 604
  • 7
  • 20
1
vote
2 answers

Linker error in Codelite with MinGW-w64

I'm trying to use MinGW-W64 instead of MinGW in Codelite. When I compile simple "hello, world" project it's all right. But when I try to link some libraries, I get a strange linker error. Project with exactly same settings compiles by MinGW with any…
desperius
  • 601
  • 2
  • 8
  • 16
1
vote
1 answer

List and view gcc C11 header files

How can I view C11 header files content of gcc compiler in CodeLite on Linux? if not possible, How/Where can I view them? Please ignore this location en.cppreference.com/w/c/header since it's just documentary with no actual header file content
1
vote
1 answer

How to add debug watch for dynamically allocated array in CodeLite?

I would like to check the content of elements in array, while debugging my program. But when I add watch for dynamically allocated array all I can see is address for pointer? Is there a way to watch the content of dynamically allocated array? I…
coder_neo
  • 23
  • 5
1
vote
1 answer

Unittest++ does not recognize tests

I'm currently performing unit tests (which I've just learned this week) in order to refactor an existing program before extending its functionality. However, UnitTest++ suddenly gave an error that said "Project contains 0 tests" after I'd done about…
PanPalitta
  • 11
  • 3
1
vote
1 answer

How do you add a file to an existing project in Codelite?

I've got my workspace, project and a single file currently. I want to add an additional file to my src folder but can't figure out how. I tried adding a new file to my project folder using ctrl+N and it shows up with my first file when I go to Edit…
1
vote
2 answers

CodeLite clang code completion greyed out

I'm on Arch linux and I'm using codelite. Id like to enable the clang code completion, but the option to do so is greyed out, even though clang is installed. What do I do?