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

Compiler Error: "Default Initialization of an Object..." using CodeLite

Trying to run the following Code and keep getting back the error message: "Default initialization of an object on const type 'const double' Following a tutorial and everything w/in seems to match up but the code won't compile to run for some…
0
votes
1 answer

How can I get CMake to build my project while showing the include folder?

Say for example I have project hierarchy laid out like so... CMAKE_PROJECT/ | |-build/ |-include/ |-Entity.hpp |-Scene.hpp |-src/ |-Entity.cpp |-Scene.cpp CMakeLists.txt How can I get my include files to show…
PrimRock
  • 1,076
  • 2
  • 15
  • 27
0
votes
1 answer

Debugger in CodeLite not showing Local variables

I have installed CodeLite 14.0.0 for C++. It is on the Windows platform. The Debugger section does not display the local variables while debugging. From the image, it can be seen that the program is a simple one so it runs perfectly and gives the…
Shubham Trehan
  • 245
  • 1
  • 3
  • 8
0
votes
1 answer

How do you set the startup project in CodeLite?

My codelite workspace has two projects, one is an executable and the other is a static library. The executable links with the static library and building everything is fine. However, whenever I click the run button, codelite tries to run the library…
SuperSim135
  • 135
  • 1
  • 10
0
votes
1 answer

codelite debugger says 'Failed to locate gdb! at 'gdb' '

I'm new to c++ and trying to debug a small personal project in codelite manjaro. But whenever i click on 'debug' it says "Failed to locate gdb! at 'gdb'".When i checked in the 'debugger options' as expected no debugger path was specified.I think the…
default-303
  • 361
  • 1
  • 4
  • 15
0
votes
0 answers

mingw32-make.exe: *** [All] Error 2 - Codelite

I'm new to codelite and I've just installed it. During the installation I let codelite search for a compiler on my PC(win10 64bit). Did it mess up the directories of things as I've read in another question?! Well, if that's the case I've no idea how…
Lucky-Luka
  • 13
  • 3
0
votes
0 answers

how to get python.h working with mingw gcc compiler

i have included the path to python.h(C:\Users\vinay\AppData\Local\Programs\Python\Python37-32\include) file and gave the library path of the project to "C:\Users\AppData\Local\Programs\Python\Python37-32\Lib" and my code is as pasted below:- …
Vinay
  • 81
  • 1
  • 8
0
votes
1 answer

Why is console not showing?(C++ and codelite problem)

i want to learn c++ and i just bought c++ course.I downloaded mingw and codelite ide.The problem is when i write simple code(Hello world) and press run,the console shows only for a second and disappears.The window with output is not showing…
Mire
  • 1
  • 5
0
votes
1 answer

How to run indiviual file on CodeLite

Can we make individual files in codelite and run them not in the project and How to make separate individual files in codelite
uh38041
  • 11
  • 4
0
votes
1 answer

OpenCV libraries missing

I'm failing to build a project in c++ where OpenCV is used. Here is what I got: /usr/bin/ld: cannot find -leigen /usr/bin/ld: cannot find -lhighgui /usr/bin/ld: cannot find -lcore /usr/bin/ld: cannot find -leigen /usr/bin/ld: cannot find…
silencefog
  • 19
  • 6
0
votes
1 answer

CodeLite Debugger doesn't open files

My linux executable works fine when I run it directly or using gdb but when I'm using codelite, at this statement fp = fopen("../../../../../data/data.csv", "r"); it returns NULL for fp, looks like CodeLite cannot figure out where the file is, Do I…
M.A.
  • 31
  • 6
0
votes
1 answer

How do I run multiple program in codelite

I had to do my homework with c programming in codelite. Just like codeBlock and Dev-C++ which give user to run multiple console program in the same folder, however, when I run it on codelite it fail. I have create different workspace folder or even…
lawrence
  • 151
  • 1
  • 8
0
votes
1 answer

C++ trouble with debuger

I'm trying out the CodeLite IDE for c++ programming. Everything is OK except the debugger when I'm using the debugger to see what inside of a string, vector or even an object I can't see the value inside them. Example Please help me with that. Btw,…
mike23
  • 51
  • 1
  • 11
0
votes
1 answer

CodeLite opencv path

I am trying to use OpenCV framework in CodeLite. I am a MacOS user. I downloaded OpenCV 4.1.0 on the official website, and it contains opencv2.framework. But, I couldn't find a way to include it in my CodeLite project. I tried setting Linker…
efedoganay
  • 133
  • 2
  • 11
0
votes
1 answer

Codelite/Mingw runs a test build instead of a file that I want it to

Before I begin asking my question, I have looked into this error but I haven't been able to have any luck into solving my problem. I believe it should be a simple fix but I haven't quite got it yet. I am currently running an error (sorta) in my…