Tagged Questions
A C/C++ IDE built on top of Eclipse. Project page: http://www.eclipse.org/cdt.
18
votes
3answers
2k views
Optimal Eclipse CDT (C++) experience in March of 2010
I am a student who will be using C++ next quarter. I really enjoyed using the Galileo release of Eclipse with Java and I would like to continue using Eclipse for for C++ development.
I am now ...
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:
/**
*
* ...
10
votes
3answers
10k views
Eclipse has two C/C++ indexers (fast & full): what's the difference?
Eclipse CDT provides two indexers for C/C++ code (Preferences > C/C++ > Indexer). Does anybody know what the exact difference is between these two?
The help file isn't exactly enlightening:
"CDT ...
9
votes
2answers
8k views
Install eclipse JDT on top of CDT
I have the eclipse CDT installed, and I would like to install Java development functionality (JDT) on top of my CDT installation. I've been Googling from an hour but I can't figure out how to do this. ...
8
votes
6answers
3k views
Eclipse Ganymede hacks, hints, tips, tricks, and best practices
I've recently started using Eclipse Ganymede CDT for C development and I couldn't like it more. I'm aware the learning curve could be sort of pronounced, therefore and with your help, my goal is to ...
7
votes
1answer
5k views
Eclipse: Is it possible to have CDT and Java IDE together
I have an Eclipse CDT enviroment up and running and customised just the way I like it. I'm also going to be heavily dealing with java soon and I don't want to install a seperate version of Eclipse ...
6
votes
0answers
912 views
Eclipse Indigo CDT: Function could not be resolved
This feels silly, but its been 2 days...somewhere after upgrading from Ubuntu 10.04 to 10.11 and from Eclipse Helios to Eclipse Indigo, I got stuck with the following problem:
Problem Description:
...
6
votes
2answers
1k views
C++, Eclipse CDT code analysis?
Are there any good plugins for static code analysis for Eclipse CDT?
I found two so far:
Cppcheck plugin, but this still needs the original cppcheck executable
CppChecker, but this didn't work (it ...
6
votes
1answer
493 views
how to let eclipse cdt show runtime error (e.g. segmentation fault)
I develop and run C++ program in Eclipse CDT on Linux.
The problem is that Eclipse CDT does't show any runtime error message (e.g. segmentation fault) in console, while I can get such error message ...
6
votes
4answers
5k views
Eclipse CDT using MinGW does not output in console
I have a Windows 7 64-bit PC and I am trying to install a free C++ IDE, so I chose to install Eclipse Helios with CDT.
For g++, make and gdb I installed msys and mingw according to this tutorial:
...
6
votes
4answers
7k views
Using custom Makefile with Eclipse/CDT
I have a project of multiple .c and .h files and i write my own Makefile.
How to configure Eclipse to use my Makefile and my source files from their original locations?
6
votes
3answers
827 views
How to show more than 100 tasks //TODOs at once in Eclipse?
As the title says, how do I display more than 100 tasks at once in Tasks window in Eclipse? Alternatively, how do I browse tasks past 100?
I have a lot of .c files in my project with many //TODOs
...
5
votes
2answers
1k views
Eclipse/CDT editor not picking up project-defined symbols in coloring ifdef'ed out sections
The problem I'm seeing is that under preferences, C/C++ Defined symbols for different Configurations/targets aren't showing up in the code coloring.
When I change the active build configuration in ...
5
votes
2answers
4k views
Debugging with Eclipse CDT and GDB
I have Eclipse CDT C++ application project that uses shared library. This library is compiled with debug info and its source is available at the right path.
Now I try to debug my application with ...
5
votes
2answers
5k views
Is it possible to attach a debugging session to a running program in eclipse CDT
I'm writing a netscape iplanet plugin (on solaris/C using eclipse) which is basically a shared object with specific entry points, and I'd like to be able to debug the shared object with eclipse's ...
5
votes
6answers
5k views
Build several CDT C++ projects from commandline
What is the best solution to build several CDT C++ projects from the command line? The projects have references and so it is not possible to just build single projects.
5
votes
4answers
6k views
Search entire project for includes in Eclipse CDT
I have a large existing c++ codebase. Typically the users of the codebase edit the source with gvim, but we'd like to start using the nifty IDE features in Eclipse. The codebase has an extensive ...
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
1answer
62 views
On Linux, Debugging a C++ application with gdb in Eclipse CDT, how to input something to stdin?
On Linux, I am trying to debug a C++ application with gdb in Eclipse CDT.
For example the application applic.exe takes some command line arguments arg1 and arg2 and it expects some data on stdin ...
4
votes
3answers
238 views
Problems getting Emacs 24 to run SLIME and Clojure Debug Toolkit (CDT)
I'm trying to get Slime working with CDT and emacs 24, to no avail, and would appreciate suggestions.
1) I did get clojure-jack-in to run, but only when I loaded swank-clojure 1.3.3 as a lein plugin, ...
4
votes
3answers
556 views
Eclipse 3.7.0 Indigo with CDT shows many false compilation errors
I have updated my Ubuntu box to 11.10 and then Eclipse also have been updated to 3.7.0 Indigo with CDT 8.0.1
Then the following problem occurs:
I have included the vector header file but the ...
4
votes
1answer
340 views
Generating 32-bit/64-bit Eclipse CDT projects using CMake
I'm setting up a C++ project which will be built for 32-bit and 64-bit versions of Windows and Ubuntu. I'm using CMake 2.8.4 and, after having played with it for a few hours, got the VS2010 32-bit ...
4
votes
1answer
191 views
How to build current project only in Eclipse CDT on “Build project”?
I am working with Eclipse CDT and I want to build the current project only, not any referenced project. Is this somehow possible?
The idea behind this is, that I want to distinguish between "Build ...
4
votes
1answer
817 views
“Export” button in Eclipse CDT “Paths and Symbols” dialog?
On the Includes tab of the Paths and Symbols section of the Project Properties dialog in the Eclipse CDT, there is an "Export" button:
The best documentation I have found says that this "toggles ...
4
votes
2answers
322 views
Using C++ with Eclipse
I'm figuring out that there's two ways of writing C++ in Eclipse: either download the Eclipse IDE for C/C++ Developers or download the regular Eclipse for java and add the CDT plugin. What is the ...
4
votes
3answers
1k views
Eclipse CDT: Make a project rebuild when a library built in another project was rebuild
We have several C projects in Eclipse, using CDT (CodeSourcery++).
There are two projects that build libraries for use in the "main" project that builds the final application.
Now we find that ...
4
votes
5answers
2k views
Eclipse C++ compilation warning problem
Here a code to demonstrate an annoying problem:
class A {
public:
A():
m_b(1),
m_a(2)
{}
private:
int m_a;
int m_b;
};
This is an output on Console view:
make all
...
4
votes
6answers
5k views
How to configure Eclipse with CDT?
I've been trying to use CDT with Eclipse 3.4 under Windows XP with cygwin.
What do I need to do, in order to get startet?
I used "eclipse-cpp-ganymede-SR1-win32.zip" found on the Eclipse homepage.
...
4
votes
3answers
4k views
Eclipse spelling engine does not exist
I'm using Eclipse 3.4 (Ganymede) with CDT 5 on Windows.
When the integrated spell checker doesn't know some word, it proposes (among others) the option to add the word to a user dictionary.
If the ...
3
votes
0answers
157 views
Strange disconnect between Eclipse CDT, included system headers, and the underlying C build
I'm having a strange problem with include files and an apparent disconnect between Eclipse's build process and its error reporting. I'll give detailed steps to reproducing this problem, so we can ...
3
votes
1answer
178 views
Unresolved inclusion error while using NDK
I am using Android NDK but the .c file in the JNI folder is showing the error of Unresolved inclusion as shown in the image: Kindly help me in solving this issue. I have tried almost everything I ...
3
votes
2answers
298 views
Set default file type to .cc in Eclipse
By default Eclipse (CDT) uses .cpp file extension for C++ files. I would like it to use .cc (and .hh) extensions instead but I cannot find such an option anywhere.
edit: To be precise, it creates a ...
3
votes
1answer
792 views
eclipse CDT glib libraries inclusion error
I have a created C based project with CDT from pidgin source code. Everything is working fine but it says unresolved inclusion for following two libs:
#include <libxml/parser.h>
#include ...
3
votes
1answer
561 views
Getting Eclipse CDT to use relative include paths in generated Makefiles
I am using the Eclipse CDT. I have configured the "external Builder" and I am generating the Makefiles automatically. Unfortunately, the generated Makefiles contain the absolute include path. I would ...
3
votes
2answers
342 views
What is the tool to check include file that are useless?(c++) [closed]
Possible Duplicate:
Tools to find included headers which are unused?
I would like to check useless header file in c++ files(.h and .cpp)
During developing, There are so many relations ...
3
votes
4answers
1k views
Get Eclipse CDT + boost::shared_ptr<T> to work with syntax completion?
How to get Eclipse CDT to treat shared_ptr as T * for syntax completion?
I'm using windows in this instance. I have 1.39 in the "Program Files" folder. I am about to try 1.37.
I am using the Galileo ...
3
votes
1answer
448 views
Regarding remote debugging on MCF5485EVB board using Eclipse CDT
I have installed Eclipse CDT, CodeSourcery G++ toolchain on Linux host. I am using the Code Sourcery Eclipse IDE. I have installed Linux kernel using Linux Target Image Builder from the Freescale ...
3
votes
4answers
2k views
What is your favorite eclipse plugins for c / c++ development?
Besides just the CDT what do you find essential for c development using eclipse?
3
votes
3answers
3k views
Eclipse CDT 5.0.1 (Ganymede) slow indexer problem
I am trying to use Ganymede CDT to index our large codebase. It is painfully slow, can take a whole night to index the C++ files. Same project takes only 5 seconds to index with exuberant ctags 5.7.
...
2
votes
2answers
158 views
C++: Virtual functions in dynamic shared library produce segfault
in an application I am writing, I am dynamically loading objects from a shared library I wrote.
This fine up to a point where virtual functions come into play. This means that I can easily call ...
2
votes
1answer
3k views
Eclipse CDT “Symbol NULL could not be resolved”
I just installed Eclipse CDT with MinGW.
All the environment variables are set, includes, etc. Tried running a hello world and everything seems to be fine.
I tried loading a C project that I had ...
2
votes
1answer
556 views
std::string not being resolved in Eclipse/CDT 8.0
Seemed to have worked fine in CDT 7.0 in Eclipse Helios, but since upgrading I'm getting a lot of unresolved symbols in my C++ projects, namely a lot of STL classes.
2
votes
1answer
109 views
Eclipse CDT, cmake, overlapping subproject
I have a CMakeLists.txt that I use to generate Eclipse CDT project files for my project. Now I added a dependencie to my project that has its own CMakeLists.txt. In my own list file I added ...
2
votes
0answers
80 views
Auto complete trigger for all alphabets in CDT Eclipse
While using Java with Eclipse, I'm able to do auto activation by entering following in "auto activation triggers" :
.abcdefghijklmnopqrstuvwxyz
Is there a way to do this in CDT?
In CDT, the only ...
2
votes
2answers
652 views
Eclipse Helios CDT under Ubuntu 11.04 crashes every time I start it: “A fatal error … SIGSEGV”
Could someone help me with this, I started using Eclipse only few days ago. I did google this problem, I see other people had the same "SIGSERV" crash but I did not find the way to fix it.
Eclipse ...
2
votes
2answers
3k views
Eclipse CDT: Unresolved inclusion of stl header
I'm trying to use Eclipse to edit sources, compiled under C++ Builder, but stuck with Unresolved inclusion problem.
For example, code like:
#include <vector>
Gives Unresolved inclusion: ...
2
votes
0answers
390 views
Remote GDB with Eclipse
I'm trying to debug an application remotely with Eclipse CDT.
I got gdbserver and gdb running so I can debug via command line.
I'd like to integrate this stuff into Eclipse. I create a .gdbinit file ...
2
votes
1answer
267 views
Eclipse Project Run problem
I tried to create a C++ project in Eclipse Helios, it works fine for some simple "Hello World" projects (a single file etc..). However, now I have a little bigger project with several files, the ...
2
votes
1answer
173 views
Mylyn new task creation collapses Navigator and Project Explorer in Eclipse Helios CDT
I'm new to Mylyn but have been using Eclipse CDT for the past 3 years or so. Since our projects have many thousands of files and up to 50 or so within a directory I love the context switching provided ...
2
votes
1answer
875 views
Eclipse CDT Source->Implement Method generates code not following defined code style
I am using Source->Implement Method sometimes, but I noticed that the generated code does not follow the defined code style from the preferences (the style is applied when I use Source->Format ...