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
2 answers

How to change dll location to subdirectory in Codelite?

Im using Codelite IDE and build test.exe gui application. When i started application i got error that some dlls missing. I found all that dll and put in folder where is test.exe, and all is working now. But with all that dlls there is mess in main…
1
vote
1 answer

Codelite C++ program not compiling and running

I installed codellite 7.0 yesterday and have been trying to work with it. But there seem to be some problem. I cannot run any code. For now code is pretty simple. #include int main(int argc, char **argv) { printf("hello…
jason
  • 301
  • 1
  • 3
  • 11
1
vote
1 answer

CodeLite dark theme

I just downloaded CodeLite 5.4 from YaST. It has everything that I want from an IDE. It has text predictions, autocomplete, and auto indent. I love it. It takes me back to Eclipse when I was using Windows. I could get my code done efficiently.…
Terrance8D
  • 193
  • 2
  • 6
1
vote
1 answer

Trying to compile with codelite/g++

I am new to codelite and have set up a new g++ Project: #include int main(int argc, char **argv) { printf("hello world\n"); return 0; } However, if I click 'Build Active Project' the Build ouput says: /bin/sh -c ' -j 1 -e -f …
Binkan Salaryman
  • 3,008
  • 1
  • 17
  • 29
1
vote
3 answers

Codelite debugger error: Failed to locate gdb! at '/usr/bin/gdb'

So I have just installed codelite on Ubuntu trusty (14.04) x64 Everything seems to be working fine but when I try to run the debugger I get the error in the question title and it just stops there and does nothing. I have searched far and wide and…
Mel0n
  • 85
  • 1
  • 2
  • 12
1
vote
0 answers

Error when building with codeLite in Windows using cygwin64

C:\Windows\system32\cmd.exe /C "C:/cygwin64/bin/make.exe -j4 -e -f Makefile" ----------Building project:[ clockType - Debug ]---------- make[1]: *** No rule to make target 'Debug/clockType.cpp.o', needed by 'Debug/clockType'. Stop. make[1]:…
HorribleCoder
  • 43
  • 1
  • 1
  • 3
1
vote
1 answer

CodeLite not working with boost library

I'm having some troubles to get my CodeLite IDE working with Boost library. So basically, I've got CodeLite v.6.1.1 and Boost library downloaded from sourceforge. I would love to make it actually working, but I failed to do so using the following…
1
vote
1 answer

RPN with header, Why doesn't it work?

I did a RPN, but doesn't show the result and the steps, before was appearing, I don't understand what is happening and there are no errors thrown by compiler either. I do always this example: 3.2 1.8 - 10 / 2 + . 4 steps = 2.14 I really don't know…
Susan
  • 25
  • 6
1
vote
1 answer

access wxFrame(s) & wxDialog(s) globally

I'm new to C++ and new to codelite and also new to wxCrafter. I'm trying to build some GUI apps, but I'm messed up about object passthrough in C++. I spent a few hours and I just understand a little bit of that. First, to pass variables between…
Wilson Luniz
  • 459
  • 2
  • 7
  • 18
1
vote
1 answer

Pthreads in Codelite 6.1 on ubuntu 14.04.1 x64

I trying to compile a simple C program with Pthreads in Ubuntu with codelite. I have chosen GCC as my compiler and have added the "-pthread" into the C compiler options in the project settings. But it throws an error "undefined reference to…
Lawrence Lee
  • 365
  • 3
  • 8
1
vote
0 answers

Codelite and UnitTest++

Can anybody explain to me how the UnitTest++ integration in Codelite is supposed to work, i.e. where I am supposed to put UnitTest++'s header files and libUnitTest++.a? I am working on Ubuntu 12.04.
JohnB
  • 13,315
  • 4
  • 38
  • 65
1
vote
1 answer

GetCursorPos works ok but GetPhysicalCursorPos "not declared in this scope"?

I'm writing some code (in Codelite), was using GetCursorPos(), no problem. But when I want to call GetPhysicalCursorPos(), it says that it's not declared in this scope... Same with SetCursorPos working ok but not SetPhysicalCursorPos... They should…
jj.jpnt
  • 199
  • 1
  • 12
1
vote
4 answers

Beginner C Conundrum: why doesn't 25 == 25?

I have a simple task for my first lab in my intermediate C programming class. I'm taking an array of 8 doubles from the user, and then 1 additional double. I then check the square of one double from the array plus the square of other doubles in…
1
vote
1 answer

Starting a new Codelite project from subversion

I cannot for the life of me figure out how to import a new project in Codelite from an SVN repo. The documentation on the Codelite website is lacking on this. How does one actually do it?
webb
  • 450
  • 1
  • 3
  • 12
1
vote
2 answers

CodeLite No executable specified, use 'target exec' error

Today is my first day of using CodeLite (http://codelite.org/) and I keep getting random errors. I've managed to fix most of them, but didn't found how to fix this one: No executable specified, use 'target exec' It is shown when I press the Start or…
Yordan Sirakov
  • 681
  • 3
  • 7
  • 9