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

CodeLite not starting on fedora 32

I installed CodeLite using the rpm package from their website. When I tried to open the program for the first time nothing happened. Trying to start codelite from the console i get the following error message: codelite: error while loading shared…
0
votes
1 answer

Codelite able to build with 0 errors but showing '.../build-Debug/lib: no such file or directory"

I've created a workspace and a project for the first time with the default code like so: #include int main(int argc, char **argv) { printf("hello world\n"); return 0; } The "Build" says 0 errors, 0 warnings. But when the terminal…
catandmouse
  • 11,309
  • 23
  • 92
  • 150
0
votes
2 answers

Create a new linked list by inserting Nodes

I am new into coding and I am trying to create a linked list by inserting nodes. I have taken a class Node that defines the structure of the node. I think my code is fine and there are no errors or warnings on compiling, but there is some runtime…
0
votes
2 answers

How to configure Codelite to compile a C program against C17/C18 standard

I am using Codelite 14.0.0 with the gcc.exe (MinGW.org GCC Build-2) 9.2.0 compiler. When I go to Menu > Workspace > Open Active Project Settings > Compiler> C Compiler Options... I can't see any option to make the compiler compile my C programs…
FlexMcMurphy
  • 420
  • 5
  • 21
0
votes
0 answers

How do I get CodeLite to find headers for FLTK or wxWidgets (MacOSX)?

My apologies, I realize this question may be covered in other questions/articles, but I am not very knowledgeable about "under-the-hood" computer workings, and I have only gotten frustrated so far by trying to look up existing answers. I'm just…
0
votes
1 answer

Codelite C++ new project

I am trying to learn C++ by following an Udemy course. In the videos, when the teacher opens a new project end enters the main.cpp file, at the first line there is #include and "hello world" code after that with std::cout and…
efe373
  • 151
  • 2
  • 11
0
votes
0 answers

gdb, C++, codelite: wrong line numbers while debugging shared lib

My issue is similar to this: GCC debugger stack trace displays wrong file name and line number More precisely: I'm using codelite 14 gdb (Ubuntu 8.2-0ubuntu1~16.04.1) 8.2 gcc (Ubuntu 5.5.0-12ubuntu1~16.04) 5.5.0 20171010 (older version to stay…
user2943111
  • 421
  • 1
  • 5
  • 15
0
votes
0 answers

What error am I making? I am getting wx-config: Command not found while compiling wxWidgets code on Codelite on macOS. Please suggest

I have tried to build a simple wxWidgets program on macOS using CodeLite. Error I get is /bin/sh -c '/usr/bin/make -j4 -e -f Makefile' ----------Building project:[ wksp-1 - Debug ]---------- make[1]: wx-config: Command not found make[1]: wx-config:…
Vibhor
  • 35
  • 6
0
votes
1 answer

Red arrows on line numbers codelite

Just downloaded codelite, when I try to include iostream I get a red arrow on that line when hovered over it says file not found. It doesn't cause any warnings or errors however. I have tried reinstalling. If I include the string library I don't get…
0
votes
0 answers

I am building my first "Hello World" project with Codelite but am getting this error: "No such file or directory. Any ideas?

When I open up the file (saved on my desktop) I see the workspace I created, the project created within the workspace and main.cpp within the project. The only error that comes to mind might be my username which includes an underscore. Is there a…
0
votes
3 answers

Codelite page gone blank

I have been writing code in codelite for c++ since past 20 days, today morning while writing code, by mistake i clicked somewhere and the top menu of options and side menu of projects vanished. I tried many things but i couldnt get them back. I am…
Cherry
  • 1
  • 1
0
votes
1 answer

CodeLite doesn't run C++ program in certain workspaces

I am using CodeLite as an IDE for C++ in order to do some of the exercises for a book I am trying to read. As of now, I have generated a workspace, and have multiple projects (each one corresponding to one exercise). CodeLite was working ok until,…
Pfrances
  • 107
  • 1
  • 11
0
votes
1 answer

an error appears when i clean project in codelite

i am doing my first steps in C++ learning i am using "codelite" IDE with "MinGW" , when i clean the project i find an error appears , although i can build the project and it runs successfully here the build log file : C:\Windows\system32\cmd.exe…
0
votes
1 answer

gtkmm/button.h no such file or directory

Whenever i try to run my code this error "gtkmm/button.h no such file or directory" pop up in the console i don't know what is this error and this page also pops up every time. This is my code. #include #include using namespace…
0
votes
1 answer

I have some problem due to which my code gets executed without any errors but the console disappears as soon as it appears

my code: #include int main() { int a{}; std::cout<<"enter number"; std::cin>>a; } the build log for this code: C:\WINDOWS\system32\cmd.exe /C C:/MinGW/bin/mingw32-make.exe -j8 SHELL=cmd.exe -e -f Makefile "----------Building…
anonymous38653
  • 393
  • 4
  • 16