A C/C++ IDE built on top of Eclipse.
32
votes
1answer
580 views
Debugging a Python Extension in Eclipse
I have a Python extension that I have successfully built and used on Windows, OSX, and linux. I now need to be able to debug this Python extension. I am averse to the use of gdb at the command line, ...
27
votes
3answers
663 views
Additional Refactoring for Eclipse CDT
Is there any way to configure or are there any 3rd party plug-ins available for Eclipse CDT (any version) that provide a rich set of refactorings? My refactoring menu only provides the following in ...
13
votes
2answers
2k views
Change doxygen comment style in Eclipse
Does anyone know how to edit the style used for Doxygen comments in Eclipse CDT?
In other words type /** and pressing enter on a line before a function currently gives me something like:
/**
*
* ...
13
votes
7answers
29k views
GCC C++ Linker errors: Undefined reference to 'vtable for XXX', Undefined reference to 'ClassName::ClassName()'
I'm setting up a C++ project, on Ubuntu x64, using Eclipse-CDT. I'm basically doing a hello world and linking to a commerical 3rd party library.
I've included the header files, linked to their ...
13
votes
5answers
11k views
Eclipse CDT Invalid Project Path
I have a C project that is built using a makefile, Eclipse constantly warns about "Invalid project path: Duplicate path entries", but I cannot figure out what the hell it wants me to do. I would like ...
12
votes
5answers
2k views
As of 2011: Netbeans 7 or Eclipse Indigo for C++?
This is basically a duplicate of:
Netbeans or Eclipse for C++?
But, that question as 3+ years old, and a lot has changed since then.
I have a large code base with a custom (but Makefile based) build ...
11
votes
3answers
975 views
can't debug small program on eclipse helios cdt using mingw/gdb under windows, console freezes
I've been trying to use Eclipse CDT to do some c++ examples, i can run them just fine with the run command, but whenever i try to Debug, the console window freezes up, I'm able to input, but the ...
10
votes
5answers
475 views
Eclipse C++: Format Source Files in Batch
Is it possible for me to use Eclipse to mass-reformat a bunch of C++ files (on the order of a few thousands), without actually having to open every single one in the IDE?
Update:
A couple people ...
10
votes
3answers
19k views
Remote debugging with Eclipse CDT
We're using the Eclipse CDT 5 C++ IDE on Windows to develop a C++ application on a remote AIX host.
Eclipse CDT has the ability to perform remote debugging using gdbserver. Unfortunately, gdbserver ...
9
votes
1answer
476 views
Eclipse-CDT: Use Namespace in automatic generated include-guards
Is it possible (and how) to add the namespace in the name of the automatic generated include guards in Eclipse CDT, when creating a new class using the .hpp/.cpp templates?
For me Eclipse generates a ...
9
votes
6answers
11k views
How to build a c++ project on a remote computer in Eclipse?
I have a Windows pc with Eclipse Ganymede installed, and a Linux pc where my C++ project files are located. I use Eclipse to edit the files through SMB, and would like to build the project using ...
8
votes
1answer
593 views
Can Eclipse hover tips display Doxygen comments from header file?
I'm using Eclipse CDT to write C++ code. Having read several discussions here on StackOverflow about whether to place doxygen documentation in the header file or the implementation file, it seems the ...
8
votes
8answers
3k views
Most useful shortcut in Eclipse CDT
I would like to make a cheat sheet presenting the most useful (and time saving) shortcut for Eclipse CDT (C++).
Can you share what are the most useful shortcuts that you use in CDT?
Please, post ...
7
votes
5answers
4k views
Work on a remote project with Eclipse via SSH
I have the following boxes:
a) A Windows box with Eclipse CDT,
b) A Linux box, accessible for me only via SSH.
Both the compiler and the hardware required to build and run my project is only on ...
7
votes
2answers
1k views
Insert/Change file headers in Eclipse?
I was using a certain file header for source code in Eclipse (defined in "Code Style") and now I changed it.
Is there a way to either change an existing file's header to the new one, or more simply ...
7
votes
1answer
346 views
How does one convert cdt managed to makefiles?
Recently I started doing a C++ project, and started it using the internal building tools of eclipse, which seemed the easiest approach to this.
However, because this project will need to be built on ...
7
votes
4answers
980 views
What plugins do you use along with Eclipse CDT?
Suggest some plugins you find useful in your day by day work.
Eclipse CDT repositories:
Helios: http://download.eclipse.org/releases/helios
C++ Development Tools: ...
7
votes
3answers
3k views
Eclipse CDT + SCons
We have a fairly large C/C++ project using scons for the building. I'd like to go at an attempt to build this through Eclipse-CDT. Anyone have any experience with this and can tell me the steps to set ...
7
votes
4answers
7k views
Why does Eclipse CDT ignore breakpoints?
My problem is that I set some breakpoints in my code and some of them aren't working. In some places it complains about "Unresolved Breakpoint".
Does anyone have any clue why this is happening? I am ...
6
votes
2answers
574 views
Setting up Eclipse for other languages
I have installed Eclipse (Helios) for the Java programming language, but I also want to use it for programming in C/C++, Python and Ruby. I've installed CDT and DLTK (for Python and Ruby).
I already ...
6
votes
4answers
1k views
Eclipse CDT: How to clear Problems window without invoking Clean Project or Build Project?
Is there a way to clear the Problems window (and any related source code error/warning annotations) without invoking "Build All/Project/..." or "Clean project" (or deleting the project and then ...
6
votes
2answers
2k views
Auto generate header files for a C source file in an IDE
I am trying to use Eclipse and NetBeans for programming in C (not C++). Is there a feature/plugin for them which automatically keeps the source and header files in sync?
As in, when I implement a ...
6
votes
4answers
4k views
OpenGL and GLUT in Eclipse on OS X
I have been trying to setup the OpenGL and GLUT libraries in Eclipse, with CDT, on OS X with not very much success. I cannot seem to get eclipse to actually realize where GLUT is. It is currently ...
6
votes
1answer
3k views
Eclipse CDT Debug console not displaying program output
I am using Eclipse IDE for C/C++ Developers (Eclipse Ganymede Package - version 3.4.2) on Windows XP with MinGW GCC 4.2.1 and GDB 6.8-3.
I am facing a problem very similar to that mentioned here. A ...
5
votes
2answers
2k views
How to use clang/llvm with Eclipse CDT
Is it possible to use Clang/LLVM with Eclipse CDT and if so, how is it configured to actually make it work?
5
votes
2answers
593 views
How to setup a makefile in eclipse (C++)?
I have a project in Eclipse and I want to use my own makefile.
I went to
project -> properties -> C/C++ Build
and unchecked "Generate Makfiles Automatically". I have a makefile named Makefile ...
5
votes
2answers
553 views
Better variable exploring when debugging C++ code with Eclipse/CDT
Using Eclipse and CDT to debug C++ code the variable windows is cumbersome and not very informative for types defined in the standard template library or in boost (e.g. shared_ptr).
Just an example ...
5
votes
3answers
222 views
How to exclude files from Eclipse's clean command
I want to exclude files from being removed by Eclipse's Project Clean. I'm working on an SDL application and I therefore need to have the SDL.dll file present in the Debug folder.
Is it possible to ...
5
votes
1answer
899 views
How to process Boost.Test output with Eclipse
I'm using Eclipse CDT and Boost.Test(with Boost.Build).
I would like Eclipse to parse output of Boost.Test generated during by run of test suites during build.
Does anybody know how to achieve this? ...
5
votes
1answer
2k views
Eclipse - What is exactly a Builder?
I don't understand what is exactly a builder in CDT, and what is the relationship with the "C/C++ Build" content.
I set up SCons in the "C/C++ Build" confuguration. It does work : I made two ...
5
votes
3answers
1k views
Eclipse C++: How do you quickly switch between header and implementation files?
How do you switch between header (.h) and implementation files (.cpp) in Eclipse when using the C++/CDT environment with a keyboard shortcut?
In XCode you can quickly switch between headers and ...
5
votes
1answer
9k views
Eclipse CDT with Cygwin GCC: automatic discovery of symbols and paths
I am using Eclipse CDT with Cygwin GCC as compiler. My project is using a custom Makefile.The problem is that when debugging the code, it couldnt locate the source files, even though I added a custom ...
5
votes
4answers
1k views
Linux IDE with proper support for STL debugging
I am looking for a Linux IDE with support for STL debugging.
the problem is that with Eclipse CDT, if I inspect the vector after the push_back:
int main() {
vector<string> v;
...
5
votes
1answer
2k views
Refactoring C++ in Eclipse CDT
I've installed the Galileo release (Eclipse 3.5/CDT 5.1) in hopes of utilizing the better refactoring support mentioned in
...
5
votes
1answer
2k views
How Do I Use Eclipse to Debug a C++ Program on Linux?
I don't use Eclipse as an IDE, and have no interest in doing so. However, I do like its source-level debugging.
Is there any way I can use it to debug a C++ Linux app without going through the ...
4
votes
2answers
140 views
Configure Eclipse CDT to use g++
I have cygwin installed, and I want to use Eclipse with CDT for development under Windows 7. However, I get following error:
**** Build of configuration Default for project hello_cpp ****
make all
...
4
votes
1answer
344 views
Eclipse 3.7 C/C++ Code Analysis “codan” flagging bogus errors
I'm using Eclipse 3.7 with the C/C++ CDT 8.0.
I configured Eclipse to use my own makefiles and now the code analysis "codan" tool flags errors on otherwise correct code. I've tried to restore ...
4
votes
5answers
626 views
How to force Eclipse to ask for default workspace?
I noticed that after installing cdt, Eclipse always loads the default workspace. The workspace listed in the config.ini in osgi.instance.area.default. Eclipse does not ask which workspace to open ...
4
votes
2answers
647 views
Build node.js addon without node-waf
I'm writing a simple node.js addon in C++ using Eclipse CDT. The project has many files and I'd like to use the Eclipse's managed build system.
I can compile a simple addon example with node-waf, but ...
4
votes
1answer
82 views
CDT Custom Build
I have a class in my project which I need to compile using an external tool, and the output of that is a .cpp file.
I've tried right clicking the .h file I want to pass to the external tool, selected ...
4
votes
2answers
141 views
Finding where std::out_of_range is thrown by std::vector.at()
Normally I would leave it unhandled and the debugger (gdb, Eclipse CDT) would show me the call stack. Unfortunately the code is being called by a third party library which absorbs all exceptions. I ...
4
votes
5answers
2k views
Getting Clang to work on windows
I have followed the following step by step guide:http://clang.llvm.org/get_started.html and I've managed, after a bit of fiddling, to get clang to compile using code:blocks and MinGW. Great, so now I ...
4
votes
1answer
896 views
Change output directory of a Eclipse CDT project
I cannot find the possibility to change the output of the built files. The only I've found deactivates the whole generated makefile process, which I don't want to.
4
votes
2answers
821 views
Passing End of Transmission (Ctrl + D) character in Eclipse CDT console
I have a C++ application, to which i need to send an End of Transmission signal.
I can do a Ctrl+D on the console, but when I try that within Eclipse, it doesn't work.
I am using Eclipse Galileo ...
4
votes
1answer
180 views
how do I point my compiler and linker in Eclipse and Windows?
I downloaded boost. The instructions at the website said this:
In this example, you would point your linker at C:\lib\boost\lib and tell your compiler to search for includes in C:\lib\boost and ...
4
votes
2answers
337 views
C++ DLL won't Link?
Alright, here's the issue. In an attempt to advance my knowledge of C++ APIs, I attempted to learn more about library file types. I have static libraries figured out quite well. You simply link the ...
4
votes
2answers
1k views
Eclipse CDT Linux ClearCase SCM Adapter plug-in install problems
I'm having a silly little problem with Eclipse. I'm trying to install Rational ClearCase SCM adapter in Eclipse (Helios SR1) CDT Linux 64 bit.
I downloaded ClearCase plug-in form here. I tried both ...
4
votes
1answer
103 views
Eclipse: Storing info in .project file
I'm trying to associate information with projects (certain properties). I tried using the persistence store (getPersistentProperty() and setPersistentProperty()).
The problem with that is that when I ...
4
votes
0answers
225 views
Customizing inclusion guards in eclipse CDT
Is there a way to customize the format of inclusion guards in eclipse CDT for the class generation template? The current format is H, but what I would like is something like __H. Not that I expect to ...
4
votes
2answers
400 views
Format(line wrapping) constructor initializer list in Eclipse CDT
I tried to find a solution for now ~30min and couldn't find any.
I am trying to set up the code style in CDT so it gives me:
MyClass::MyClass() :
var1(1),
var2(2),
var3(3){
}
instead of
...