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
4
votes
2 answers

debugging c++ in codelite

i am setting a break point beside the int x , and setting the ide to the debug mode,but nothing appear in the debugging window when i start debugging ??? should i do something more ? #include int main() { using std::cin; using…
user1609974
  • 95
  • 1
  • 2
  • 6
3
votes
2 answers

How can i include header files from a directory into cmake

I have a cmake file which generates my helloworld.workspace to work from. How do i get my cmake to include header files from a directory and external libraries example. -glfw3 like how i would normally use when using gcc directly. Note: i am on…
rial
  • 705
  • 7
  • 17
3
votes
2 answers

CodeLite won't detect (installed) MinGW -- and will not compile even with manual configuration

I installed CodeLite and was rightfully put in the direction to install MinGW. I installed MinGW right from where CodeLite suggests/links to it and everything went well there. I then click "scan" on CodeLite to find the just installed compiler and…
The Yuplia
  • 31
  • 1
  • 1
  • 3
3
votes
2 answers

Makefile to CodeLite

How can I convert a Makefile-based project into a CodeLite project?
Vectorizer
  • 1,076
  • 9
  • 24
3
votes
1 answer

Error while loading shared libraries: No such file or directory even after using LD_LIBRARY_PATH and changing $PATH

I'm new to Linux environment. I'm trying to run my C++ files on Codelite and its giving me error which just won't go. I have a DLL folder of my Dahua SDK. It contains shared .so libraries. I'm getting this error since last 2 days and can't run my…
Tarak Shah
  • 87
  • 1
  • 11
3
votes
1 answer

Codelite Build Error 'No such file or directory'

Im new at programming with Codelite, i created some simple frames with wxCrafter, but Codelight will not install (yes, I have mingw installed, worked on a console program). I tought, I made did a mistake with my frames, I decided to create a new…
9Strike
  • 31
  • 1
  • 3
3
votes
1 answer

Should CodeLite workspaces be shared?

I'm working on a project where several people is working on the same code via Git. I'm just wondering if everyone working on this project should share the same workspace (via the ./foo.workspace file), or just share the project (via the…
lindhe
  • 806
  • 2
  • 14
  • 32
3
votes
1 answer

CodeLite static library does not find include file

I've created a simple project to learn how to create a static library. I've created a new workspace in CodeLite and a new project and a new static library. In the static library I've got, inside a "include" folder a .h file called helloworld.h and…
user2233540
  • 427
  • 2
  • 5
  • 10
3
votes
2 answers

How do I set up wxWidgets for Windows and CodeLite?

I'm trying out a new setup. I'm on a 32-bit Windows 8 Pro laptop. I've downloaded MinGW-builds' GCC 4.8.1. I used it to compile LLVM & CLang (3.4+ from a SVN copy of the trunk). Both of those are in my PATH. I've downloaded CodeLite 5.2, which…
CTMacUser
  • 1,996
  • 1
  • 16
  • 27
3
votes
1 answer

CodeLite how build app?

I've installed CodeLite with minGW and wxWidget (I think so). I've written program in C++, simple, small. The problem is, that when I click on Build menu, all options are grayed. I checked build settings and I think that they are ok, but I'm not…
2
votes
0 answers

CodeLite color schemes (themes) messed up for C

I recently updated CodeLite for Linux (Debian) to version 14.0. I use CodeLite mostly for C and looks like the IDE messed up the color themes. Here I have before (CodeLite 13.0) & after (CodeLite 14.0) screenshots. Upon further "investigation" I…
2
votes
15 answers

CodeLite closes terminal instantly

I'm a beginner in C++ and I started an Udemy course. In that course they recommend using CodeLite as IDE, so I decided to give it a try. In the course, they write a basic program that displays "Hello world!" to show how the IDE works. They compile…
Daniel Bortan
  • 21
  • 1
  • 2
2
votes
0 answers

Codelite linker undefined reference error

I'm new to codelite and c++. I'm using Linux and the g++ compiler. I've set up a simple project with two source files just to play around with linker errors. The files look like so: Main.cpp: #include void Log(const char*); static int…
Matheus Leão
  • 417
  • 4
  • 12
2
votes
1 answer

How to build and run multiple main cpp files in CodeLite IDE that are in different Projects or within same projects?

I have a simple codelite project structure as follows: All of the three main.cpp files are independent. I just want to keep it that way as I am not building a typical c++ project rather, I want to use CodeLite to compile, run and test one cpp file…
user3243499
  • 2,953
  • 6
  • 33
  • 75
2
votes
1 answer

How to compile a static library with Codelite 11.0.0?

I would like to compile a static library out of all the functions I have written for a C++ project. I am using CodeLite 11.0.0 on Ubuntu 16.04, configured to use GCC as compiler. I have followed the instructions in CodeLite's tutorial, according to…
raggot
  • 992
  • 15
  • 38
1
2
3
19 20