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

How can I prevent debugger from stepping into header files like "@file ext/new_allocator.h " and "@file bits/vector.tcc" in codelite?

This is my code.When I step out of the move constructor,the debugger steps into weird looking functions(I'm new to programming) and files that are GNU extensions of the standard c++ library. #include #include using namespace…
1
vote
0 answers

Installing older versions of CodeLite (v13) in Debian 5.8.14

I had some trouble with CodeLite v14.0 color schemes and wanted to go back to version 13, which worked fine before the update, at least while they fix that issue. I tried downloading the package from the CodeLite release archive and install it: $…
1
vote
1 answer

How do I configure the preferences of a project in codelite?

I have codelite 5.2, windows 10, C language, how can I configure the preferences of a project so that it finds the libraries (.h) of another project (of the library, static library) in the same workspace? I have tried to put various paths but I…
Anita JP
  • 23
  • 4
1
vote
1 answer

Top level declarator error but the program runs correctly

I have a project with multiple files including main.cpp and two headers. Both headers have an error at the line with class name declaration. Building any of the files or project as a whole gives no errors or warnings. The program itself runs…
trofchik
  • 87
  • 1
  • 7
1
vote
0 answers

CodeLite MinGW how to change temporary batch file path

I'm using CodeLite and mingw64 compiler on win10. When I build my C++ projects, it creates a temporary batch file in the %temp% folder with a structure r"make\d+-\d+.bat" (example: make9036-20.bat). Now Avast thinks those are viruses, so it blocks…
TtijasS
  • 11
  • 2
1
vote
2 answers

Codelite sidebar is gone

I'm new to CodeLite. I clicked something that hid the sidebar navigation. When I go to View > Show Menu Bar, the option is grayed out. Apologies for the simple question. I'm new to this IDE.
J Seabolt
  • 2,576
  • 5
  • 25
  • 57
1
vote
0 answers

Codelite:Hover Tooltip Does Not Work When Using Functors in C++

I'm using functors in my C++ programs and I noticed that when I hover over the variable object1 that I created it does not show its type. I am attaching a screenshot of my program. In VS Code it shows the type of the variable object1 as…
Jason
  • 36,170
  • 5
  • 26
  • 60
1
vote
0 answers

CMake->CodeLite: Can I tell CMake to include header files in the CodeLite workspace?

I'm using CMake for a C++ project. When I create a CodeLite workspace with cmake -G "CodeLite - Unix Makefiles", I have to manually add header files into the workspace - I guess, because they aren't listed in any CMakeLists.txt. Is there a way to…
RL-S
  • 734
  • 6
  • 21
1
vote
1 answer

Why doesn't Codelite create a make file?

I'm using Solus Linux with G++ and whenever I build the default console project in CodeLite I get the following output /bin/sh -c '/usr/bin/make -j4 -e -f Makefile' /bin/sh: /usr/bin/make: No such file or directory ====0 errors, 0 warnings==== I…
SuperSim135
  • 135
  • 1
  • 10
1
vote
0 answers

Failed to execute child process for a codelite code

I've installed codelite IDE version 13.0.8, my laptop runs on ubuntu 18.04.3, compiling and building my first program seems to be error-free however when I attempt to run it the terminal window prompts the following error: **There was an error…
1
vote
1 answer

ld.exe: cannot find -ldwrite and -ldwmapi

As the title, I have this error while compiling an hello world demo with gtk in codelite...the exactly error is C:\WINDOWS\system32\cmd.exe /C C:/MinGW/bin/mingw32-make.exe -e -f Makefile Building project:[ CodeLiteGTK3 - Debug…
luna80
  • 173
  • 2
  • 12
1
vote
1 answer

Development an application with dependencies in macOS without Xcode

I have a project written in c++ using codelite IDE. I compiled it windows, Ubuntu and Fedora successfully an I created installers for all of them (for Ubuntu a .deb package and for Fedora a .rpm package). Recently, I could compile it in my macOS…
1
vote
2 answers

Codelite menu bar has been hidden

Hi I'm currently using CodeLite for my IDE, and I cannot seem to find a way to bring back my menu bar. Originally I was just trying to add other bars back by clicking through, but I ended up un-checking the menu bar, and now it's completely hidden. …
Majere39
  • 11
  • 1
  • 2
1
vote
1 answer

Codelite build presenting only the last row of output

Using CodeLite c++14, mingw-32. I'm fairly new and learning from a course to program in the languge, but i've encounterd a problem in the last couple of days i couldn't figure out. For some reason, the command line prompt shows only the last row of…
Nix
  • 77
  • 1
  • 10
1
vote
1 answer

CodeLite with CMake does not execute make when building

I just switched to CodeLite for C++ development. I followed the QuickStart guide and created a simple console executable (g++), and when setting up a new project, you can choose the Build System, which offers the options Default CMake GNU makefile…
RL-S
  • 734
  • 6
  • 21