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

How do I get my compiler to work in codelite? (It works with codeblocks)

I am fairly new to programming and have mostly programmed using textfiles but now I am supposed to start using CodeLite for an assignment. I am using windows 10 64-bit. The problem is that I cannot seem to get my compiler to work in codelite the…
Duran
  • 1
  • 2
0
votes
1 answer

Codelite program will not run

I'm trying to run a program on Codelite and it runs fine on my PC but on my mac I keep getting the error message below the output window says Current working directory: /Users/me/Desktop/Class/Converter1/Debug Running program: /usr/bin/open…
noremacb
  • 19
  • 2
  • 6
0
votes
1 answer

Codelite terminal and debugger quit unexpectedly

I'm taking a CSCI class and it was recommended to use Codelite for Mac. I tested out the "Hello World" program and when I debug it i get "Codelite Could not launch terminal for debugger" and when I try to run it i get "Codelite-terminal quit…
MMP
  • 1
  • 1
0
votes
1 answer

cannot launch debugger on macos using codelite

I get the pop up "Failed to start terminal for debugger".i have set the gdb path in the gdb options of codelite. Is there anything else to be done? My mac os version is 10.10.4 GDB version installed under /usr/local/bin/gdb - version 7.8.1 The c…
kishore .
  • 2,123
  • 2
  • 16
  • 12
0
votes
1 answer

codelite clang separate options

I did follow the suggestions on the documentation to enable clang code completion, but it seems that on the most recent version there is no option to add search paths and compiler flags separately, I tried adding compiler flags on the search path…
lurscher
  • 25,930
  • 29
  • 122
  • 185
0
votes
1 answer

g++ -Wall -g -c main.cpp -lGL -lGLU -lglfw3 -lX11 -lXxf86vm -lXrandr -lpthread -lXi - Could you explain this command?

I've got a really specific problem but I'm relatively new to C++. Could you explain me each part of the command? If you can, please also explain me, where to paste those options in CodeLite
0
votes
2 answers

Why is the output different from what I expected?

I run this code but the output was different from what I expected. The output: c = 1324 v = 1324.99 I expected that the output should be 1324.987 for v. Why is the data in v different from output? I'm using code lite on Windows 8 32. #include…
CatCoder
  • 248
  • 2
  • 10
0
votes
1 answer

How can I set window-transparency in codelite?

Is it possible to set window transparency in codelite, for example for the output or workspace view? Is there a fast option to hardcode this since this feature seems to e missing and how platform dependent would that be? I use xubuntu.
Wojtek
  • 101
  • 1
  • 7
0
votes
2 answers

Compiling error libgcc_s_dw2-1.dll missing nothing works

I've found exactly the same topics on stackoverflow, unfortunately none of the solutions presented in similar topics actually worked in my case. I'm using latest version of CodeLite 7 + MinGW, the problem I got is that everytime I want to compile…
Silvo Dante
  • 1
  • 1
  • 1
0
votes
1 answer

CodeLite - build settings malfunction

from unknown reason I can't compile a single file/project in C++ in my CodeLite environment. I'm using latest version of CodeLite, i.e.: 7.0 with pre-installed MinGW libraries. OS/ Windows 7. Strangely after reinstallation, time and again I get…
Frank May
  • 1
  • 1
  • 1
0
votes
1 answer

getting codelite working with git

i am trying to set up codelite to work with git using this tutorial i created a repo in bitbucket, using SourceTree, i cloned the repo and made a few commit to make sure its working. then i created a new project in codeLite with the Repo folder as…
user1333057
  • 607
  • 1
  • 8
  • 19
0
votes
1 answer

Codelite Sample code Executable

I am just started exploring codelite. I have written a sample program hello.c to create a window and it will display "Hello World". Executable hello.exe is available under Debug directory. When i execute that from my system its working fine. I have…
user3395194
  • 89
  • 3
  • 11
0
votes
1 answer

Error linking with mingw compiler using Codelite, can't find lib folder

I'm trying to get started with SDL and trying to compile a 'hello world' starter app to check my configuration and I get this error: C:/MinGW-4.8.1/bin/g++.exe -c "C:/Users/Me/Documents/Cpp_Projects/Demo_Graphics/main.cpp" -g -O0 -Wall -o…
AntG
  • 1,291
  • 2
  • 19
  • 29
0
votes
1 answer

Adding external libraries on CodeLite

I'm starting with CodeLite and I wonder how do I add an external library. I wanna make a SFML game using CodeLite and I'm getting some troubles with it. I used to program with QtCreator, but now I'm trying something new.
Jazzguy
  • 147
  • 1
  • 11
0
votes
1 answer

Debugging with Codelite and Cmake

Most of my experience in programming has been with Windows and Visual Studio. I have been recently looking into cross platform build tools so I can program on Linux as well. I have been using Cmake to create make files and I figured I would use…
user1446441
  • 21
  • 1
  • 2