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
0 answers

How to show how much time elapsed in Codelite?

So I have been coding on codelite and now want to optimize it, however for some reason it doesn't show me how much time elapsed. It just shows me the output and then "Press any key to continue.." and that's it. I haven't found anything online…
Bializm
  • 1
  • 4
0
votes
0 answers

A red arrow problem on codelite using the mac that is unable to be solved by unchecking the diagnostic box

Can't Find the Diagnostic Box to uncheck. This is seen in the instructions of 'Select 'Plugins'->' Language Server'->'Settings' and uncheck the box that says 'Display Diagnostics' at the bottom of the page then click OK. However, I just can't find…
0
votes
1 answer

windres cannot find "wx/msw/wx.rc" building wxWidgets project with MSYS2-minGW64 and Codelite

Opening a new questions as some older answer does not apply to my case. As per subject, I cannot compile a basic wxWidgets "Hello, World" program in Windows 10 with CodeLite 14 and wxWidgets 3.1.4 (compiled using MSYS2-mingW64). The error message is…
Federico Perini
  • 1,414
  • 8
  • 13
0
votes
1 answer

CodeLite displays non-existent errors (wxWidgets)

I created template wxwidgets application in CodeLite and it builds fine, but CodeLite shows errors like this in text editor: This error is not one, also exists error in #include : unknown type name 'class'. The second error lets me…
GRAPHITE9932
  • 36
  • 1
  • 3
0
votes
0 answers

C++ code runs fine in Visual Studio (windows) but gives a segmentation fault in CodeLite (Linux)

My code compiles and runs without error in Visual Studio, however I need to to run in CodeLite on Linux and it gives me a segmentation fault for the same code. For reference this is my code: #include #include #include…
emild
  • 1
0
votes
1 answer

CodeLite MinGW32 cannot link to .dll.a file

I've recently moved over to CodeLite for C development, and i've been trying to get sigil to work for MinGW32. I've been trying to include it locally from the project settings using the path F:/sigil-mingw32, where the library is located. I have the…
Boyfinn
  • 156
  • 16
0
votes
0 answers

Codelite C++ build suddenly not working. ar can't find GL

I've been writing a mediocre game engine using SFML and OpenGL. Up until recently it has been building without difficulties, except for my own typos, bad code, etc. I'm building it as a static library, so (as I understand it, please correct me if…
Hal Gee
  • 65
  • 2
0
votes
1 answer

sf::Event::Keypressed not working inside of poll event loop -SFML-2.5.1

#include #include #include #include int main(){ sf::RenderWindow window(sf::VideoMode(640, 480), "Window"); while (window.isOpen()) { …
0
votes
2 answers

Codelite Clang Error: No Such File or Directory @./build-Debug

I have never used Codelite and am attempting to use it as apart of a requirement for "C Programming for Beginners" course on UDEMY. I am using a Macbook PRO OS version 10.14.5 and Codelite version 14.0.0. I have created a workspace called SampleApp…
Linkovich
  • 1
  • 2
0
votes
3 answers

Create a class in Codelite

I'm trying to create a class in codelite 13.0.0, on Ubuntu 20 and i right click on src, but no choice appears for creating new class. I also work on Code Lite i can't remember version, on Ubuntu 18 and there I can create class. Any ideas?
alex spi
  • 11
  • 5
0
votes
1 answer

How to solve mingw32-make.exe : *** [ALL] Error 2 in Codelite?

please how to solve this issue in codelite .
0
votes
1 answer

Exec Format Error using Codelite IDE and Ubuntu

I am trying to run a C++ program using the IDE Codelite on an Ubuntu 18.04.5 LTS computer with MinGW compiler (i686-w64-mingw32). When I execute it gives the error "Exec Format Error". I can't figure out how to fix this. I appreciate any advice.
revna
  • 1
0
votes
1 answer

How to configure Codelite "Syntax highliting" for c++?

Is it possible to configure Codelite to highlight syntax error in C++ like in most other IDE?
Sambalika
  • 100
  • 7
0
votes
0 answers

I have tried to run my code on codelite but the only thing that prints out on terminal is "Hello world" which has nothing to do with my code

This is my code #include #include using namespace std; int main() { vector vowels {'a','e','i','o','u'}; cout << vowels[0] << endl; cout << vowels[4] << endl; vector test_scores…
JJL
  • 71
  • 4
0
votes
1 answer

How to configure CodeLite IDE to use C++ and SFML library? (Windows/Linux) Configuration complete solution

How to configure "CodeLite" IDE for being able to develop in C++ with the library SFML? Here below is my complete solution... ENJOY
Sambalika
  • 100
  • 7