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

g++.exe: @letstr.txt: No such file or directory g++.exe: no input files -first try-

as you know that i'm really a beginner for CodeLite and MinGW, and i don't have any idea how it's works. When i try to build the project, the output said that it's error and i don't know what should i do. I'm using Windows 10. i simply just follow…
KanzouG
  • 1
  • 1
0
votes
0 answers

Compile/Debug code in CodeLite with -lX11 argument (On Linux Ubuntu 16.04 LTS)

I've been trying to debug and compile my C++ with Xlib code in CodeLite for a while now, but I can't seem to pass the -lX11 argument to the gcc compiler in CodeLite. How would I go about doing this (On Linux Ubuntu 16.04 LTS)? Code: #include…
Logan Darby
  • 145
  • 16
0
votes
1 answer

How to reload files tree in CodeLite?

Is it possible to reload or update folders in the CodeLite environment? I mean, add newly added files to the project and remove files or folders that doesn't exist anymore.
Daniel Santos
  • 14,328
  • 21
  • 91
  • 174
0
votes
0 answers

use of undeclared identifier 'insertionSort' in CodeLite

Using CodeLite IDE on a Mac to brush up my C++. It's a common practice to write functions in a different cpp file than the one that has the main(). I have two .cpp files, main.cpp and InsertionSort.cpp. The latter has the sorting function and the…
baconSoda
  • 503
  • 2
  • 5
  • 15
0
votes
0 answers

CodeLite - "Program exited with return code: -1073741510"

I just installed CodeLite on my laptop, and when I try to run the basic hello world from a new project #include int main(int argc, char **argv) { printf("hello world\n"); return 0; } It doesn't return 0 but instead Program…
user5455540
0
votes
2 answers

Whenever I try to run my project in codelite, any changes I've made seem to be ignored

An example of my situation would be when I add a cout in main and when I build and run the program that cout is never displayed (it's the second line of code so I don't believe the issue has anything to do with the code). I should also mention that…
0
votes
1 answer

Multiple Folders in Explorer

The Explorer in Codelite is very helpful. But it seems not to be possible to have more than one directory included in it. Is there a plugin or a way I couldn't find until now, to have more than one folder in the Explorer in Codelite?
Johannes
  • 43
  • 1
  • 2
  • 6
0
votes
1 answer

Error: multiple definition of `fprint' - while using SDL_ttf

I have a custom library that utilises this code (https://www.dropbox.com/s/iwft7snjmntf160/SoASpriteFont.zip?dl=0). The linked code was written for Visual Studio; I am using CodeLite on Windows. Its has a SpriteFont.cpp that uses fprintf. The static…
berilac
  • 48
  • 1
  • 7
0
votes
1 answer

Shortcut to switching focus between editor and project tree(explorer) in CodeLite IDE

Is there a shortcut to do - what I mention in topic, or some trick to simulate this in CodeLite IDE? I know how to change tabs [CTRL+ALT+ARROW] I found someone who looking the same: https://github.com/eranif/codelite/issues/1094 Right now I hack…
Sonny D
  • 897
  • 9
  • 29
0
votes
1 answer

Can't compile glew when using it via my own library : CodeLite

I have edited out a lot of my original situation to try keep things simple; it can be seen in the revisions. Basically I have been following a tutorial in which a game engine is being created. Most of the code has been separated into its own…
berilac
  • 48
  • 1
  • 7
0
votes
2 answers

Linking SFML in Codelite, cannot find libraries

I'm trying to link SFML2.3.1 in Codelite 9.1.3. I'm using Windows 10, 64 bit. I did everything according to this tutorial http://en.sfml-dev.org/forums/index.php?topic=18820.0. I did the Include Paths, the Library Paths, entered the libraries…
Benjaminf
  • 3
  • 3
0
votes
0 answers

MinGW Interrupt/Exception

I've setup a project in CodeLite (mingw, windows 10 64bit), that uses SFML with static linking. Rebuilding or cleaning the project produces this output: C:\WINDOWS\system32\cmd.exe /C E:/DevTools/WinBuilds/bin/mingw32-make.exe -j8 SHELL=cmd.exe -e…
DoubleVoid
  • 777
  • 1
  • 16
  • 46
0
votes
2 answers

Linking SFML in CodeLite

Ok so I am trying to link SFML in a CodeLite project but with no success. So what have I done : Added the include folder of SFML to the IncludePaths of CodeLite. Added the lib folder of SFML to the LibrariesSearchPath of CodeLite. Added SFML_STATIC…
Rokner
  • 169
  • 2
  • 13
0
votes
0 answers

C++ Compiler Error: How to enable -std=c++11 or -std=gnu++11

I writing a program a program for Exam Report in C++. I don't see any error in my code but I each time I execute the code, it gives me the following error: #ifndef _CXX0X_WARNING_H #define _CXX0X_WARNING_H 1 #if __cplusplus < 201103L #error This…
Ajmal Razeel
  • 1,663
  • 7
  • 27
  • 51
0
votes
2 answers

C Codelite compile error

I just installed CodeLite onto a brand new PC and I am not able to compile anything. I want to write a console application in C Simple Executable (gcc) Compiler: gnu gcc Debugger: GNU gdb debugger However, I can't even build a default "hello world"…
Megabight
  • 71
  • 1
  • 1
  • 10