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

Linking SDL_image using macOS

So I'm trying to create a simple 2D game engine with SDL2 and Codelite. I have already written this code and compiled it with gcc, using g++ src/*.cpp -o game -I include -L lib -lSDL2 -lSDL2_image and it didn't work. I have a lib folder containing…
Antonin
  • 69
  • 1
  • 4
0
votes
0 answers

Where is there PHP executable in this docker?

I use Ubuntu 20.04. I installed this: https://github.com/nanoninja/docker-nginx-php-mysql I set PHP 8.1. Install completed. http://localhost:8000/ in Firefox is work. I use CodeLite IDE on my desktop Ubuntu. I run CodeLite - PHP Setting - General -…
Spec86
  • 21
  • 3
0
votes
0 answers

I have installed MinGW and codelite and everything works except showing "locals" when stoping at a breakpoint when debugging

I have installed recently on my windows 10 the MinGW for using it on C development plus codelite. Everything works, I can compile and run programs, but I can't find the way to make the debugger show me the value of locals. I am newbie on software…
0
votes
1 answer

I can't install Codelite on kali linux

I am trying to install Codelite compiler on kali linux but I can't. I tried to install gtk 3+ but it doesn't work with that either ... I don't know what to do anymore, I'm desperate. Commands I typed: sudo apt-key adv --fetch-keys…
Jacopo N
  • 19
  • 3
0
votes
2 answers

CodeLite IDE is not reading file

So I have a Test folder inside my workspace in CodeLite and inside Test folder I have: main.cpp test.txt The problem is whenever I try to read from test.txt, the compiler deletes the file content and writes "Debug/main.cpp.o" inside my test.txt…
elixir
  • 137
  • 8
0
votes
1 answer

Problem with Codelite and MinGw64 (cant get them to work)

I have installed mingw64 and added it as a variable in the control panel, and when I tested it in the cmd (using g++ --version) and it work fine. Then I installed codelite and created a workspace (making sure I selected mingw64 as the compiler). I…
0
votes
0 answers

Codelite project with json_to_cpp include will not compile

I have a new g++ Codelite project - on Macosx. I am using json_to_cpp and want to compile and run a simple demo. I keep getting the following output: /usr/bin/make -j16 -e -f Makefile ----------Building project:[ JSON_to_C++ - Debug…
Thomas
  • 1
  • 3
0
votes
0 answers

Using MinGw64 and CodeLite is running my program too slow

I downloaded the MinGw64 compiler on my external drive D: and set its path on env variables accordingly. I then proceeded to download the IDE CodeLite on the same D: and was able to create a project using the MinGw64 as the compiler. When writing a…
pbl
  • 17
  • 4
0
votes
1 answer

Codelite using libpqxx connect example with g++ fails on macosx

I've tried both make and cmake to compile and deploy libpqxx but simple code does not seem to work. https://github.com/jtv/libpqxx/blob/master/BUILDING-configure.md. I installed the library using the instructions on the official Git repo but am…
Thomas
  • 1
  • 3
0
votes
1 answer

Using Codelite on Mac with wxWidgets but Language Server cannot wx includes

I have installed Codelite 15.0.6 and also wxWidgets-3.1.5 from source using procedure on this site. https://docs.codelite.org/build/build_wx_widgets/ When creating project using wxCrafter - wxDialog or any wx[Method] the project can not clean or…
Thomas
  • 1
  • 3
0
votes
0 answers

Windows not appearing in codelite ide

Hi i am relitively new to codelite and i have accidently got rid of all the little windows here is the screen. Codelite Image How it should be does anyone know how to get them back up again?
user16672038
0
votes
3 answers

Smallest Positive Number - Python - Codility

I am using Codelite to train myself as I just started learning Python. In the excercise "Smallest Positive Number", I used the code below and some test cases passed, but most of them not. How can I improve my code? (test cases like [1,2,3,4] and…
0
votes
1 answer

How to change the Global Settings (compiler, linker) in codelite?

I am using CodeLite for C++ development. I can edit AVAILABLE options under Settings/Build settings/Compiler Options or /Linker Options. I can also change the options of a PARTICULAR project under Workspace/Open Active Project Settings... What I…
jollytall
  • 117
  • 8
0
votes
1 answer

CodeLite - unable to handle compilation, expected exactly one compiler job in ''

I'm just starting out in C++, writing my first few programs in CodeLite. I keep getting this red arrow & warning message (shown below). I managed to fix it so that my code runs and works fine (had to open some of my files as an administrator?), but…
0
votes
1 answer

Codelite not recognizing ns-3 files

I'm pretty new with C++ development, and I wanted to use an IDE. I downloaded codelite, and everything was working fine. The issue Recently I started development an App for the NetworkSimulator3 or Ns3, that runs with Waf(https://waf.io/). Using the…
EduardoMaia
  • 591
  • 1
  • 4
  • 17