The CDT Project provides a fully functional C and C++ Integrated Development Environment based on the Eclipse platform.

learn more… | top users | synonyms

0
votes
0answers
6 views

CDT on hover show documentation

In JDT, if we hover any object, like a function, class, variable etc, eclipse shows the documentation in a tool tip. This documentation is also displayed when the code-assist window shows the ...
2
votes
0answers
32 views

Compile and regex in c++ using eclipse

So my professor gave me a work with regex in c++. So I tried to write my code in eclipse (I am using linux (ubuntu 12.04)). so I took the code : // regex_search example #include <iostream> ...
0
votes
0answers
12 views

Text search in Eclipse CDT won't show results from include paths

I am trying to find certain text(bug number -- it resides in comments) in my Eclipse CDT project. The results will not show anything from the header files in include paths although some header files ...
0
votes
1answer
31 views

How to set “./configure --without-iconv” in Eclipse (CDT)?

I'm with this error: "undefined reference to 'libiconv_open'" While compiling On this site there is a solution: [SOLVED] Error "undefined reference to 'libiconv_open'" while compiling But, I'm using ...
0
votes
0answers
17 views

CDT projects have been lost after a plugin is installed

It took me hours to configure and make to run an embedded project inside Eclipse. After that I installed the plugin "Vrapper", and Eclipse restart itself. Then my project was gone! Eclipse just shows ...
1
vote
1answer
17 views

How does the Eclipse CDT indexer cooperate with version control?

I use both Git and ClearCase for different projects. I always wonder how the Eclipse CDT indexer cooperates (or not!) with the underlying version control. For example, when you "git checkout" ...
0
votes
0answers
15 views

Eclipse using CDT doesn't give variables correct to functions

I am currently writing a C program to calculate the result of a sinus-function. It looks like this: #include <stdio.h> #include <math.h> double mysin(double x, int n); int main(void){ ...
1
vote
2answers
23 views

Eclipse project files in Mercurial

I need to work togehter with multiple assistant developers on an Eclipse CDT project which is versioned with Mercurial. The Eclipse project settings such as build setting are defined in the .cproject ...
-4
votes
0answers
26 views

error: required from here (GCC 4.7) what is wrong?

The following code will cause the error with GCC4.7 required from here I do not understand why but this work fine in VS2010 and VS2012 thanks //---parser.h --------// template<class T , class ...
0
votes
1answer
33 views

Eclipse CDT - Link individual library with space in file path

Using Eclipse CDT, I am trying to link a single library (.lib) file into my project. During compilation, as a result of the space character in the file path, the path is split around the space, ...
0
votes
1answer
48 views

Eclipse CDT with MinGW displays warnings as errors

I have a little problem. I just installed Eclipse CDT and created a C project using MinGW and all my simple warnings (like "unused variable" etc) are shown as errors. The program build fine and I ...
0
votes
0answers
41 views

Eclipse Juno CDT opengl doesnt compile

I want to develop openGL app using CDT on Eclipse . I followed THIS guide. Now every time I build the program , it print's the following : Now I know this is somehow related to missing libriaries , ...
0
votes
1answer
39 views

Retrieving Eclipse CDT Messages from Compiler

Can we retrieve Eclipse CDT compiler problem messages (Iproblem interface) as we can do with JDT? The purpose is to access them within a standalone Java application. CompilationUnit cu = … Message[] ...
0
votes
1answer
34 views

Project builds. Yet doesnt create the binaries folder

I recently configured eclipse CDT for C++ development. I can build projects and no errors show up in the project. When i try to run the project i get an error that states: lunch failed No binaries ...
1
vote
1answer
75 views

Eclipse Juno with CDT Doesn't Add Built-in Include Directories

Since I upgraded from Eclipse Indigo to Juno (on Ubuntu 12.04), I've been having the problem where it shows "unresolved inclusion" errors for standard libraries (e.g. next to #include <iostream> ...
0
votes
1answer
29 views

including a new file in C++ with eclipse cdt

Sorry if this is a duplicated question. I have eclipse juno, cdt in ubuntu. A hello world autotools project that works. Now I want to use a function in another file so, I created a one.h and one.cpp ...
0
votes
2answers
59 views

Run Eclipse in verbose mode

Is there any way to run Eclipse CDT in verbose mode? When I want to open a project it takes forever to finish (the activity scroll bar keeps scrolling with no end). I am hoping to get some insight ...
0
votes
0answers
50 views

How to use library SWI-Prolog 6.2.6 on Eclipse CDT

Sorry for the generalized question. I'm trying to add library swi-prolog 6.2.6 to Eclipse CDT and it won't work out. C/C++ General >> Path and Symbols: **Includes**: "C:\Program Files\swipl\include" ...
0
votes
1answer
9 views

eclipse pde - Access cdt managebuilder definitions of a project

For eclipse pde, How do I access cdt build definitions of a project from code?
0
votes
2answers
57 views

Auto formatting - Eclipse C++

Hi all I'm trying to stop the auto formatting in eclipse from indenting my opening and close brace after a function that has a throw() statement on the end. e.g void function(std::string param) ...
2
votes
1answer
39 views

Eclipse CDT - hover window recursion / nested hover windows

I work at huge embedded-C projects with nested typedefs and functions that I regularly lose track of. I usually do quick checkups with the hover-window, but that doesn't work well for nested ...
2
votes
1answer
113 views

Eclipse CDT - Precompiled Header

I am looking for a straight forward way to use precompiled headers for a C++ project using Eclipse / CDT. The stuff does work when running from command line but I am looking for an easy way to ...
0
votes
0answers
33 views

Eclipse CDT code analysis/indexer problems pane doesn't refresh

I'm using Eclipse CDT for a small C++ project. The code analysis/indexer seems pretty poor, but occasionally does provide some insight. However, the main problem I have is that the "Problems" pane ...
0
votes
0answers
31 views

Cannot install MiniXML libraries to eclipse in windows

I'm trying to configure the MiniXML libraries in Eclipse Juno running CDT on Windows 7. I downloaded the current version here: http://www.minixml.org/software.php Then I placed the folder in my ...
1
vote
1answer
55 views

Adding header files to eclipse build path for C++

I'm trying to use this: http://www.minixml.org/index.php I'd like to get these includes to work on Eclipse for Windows. Can anybody help me?
0
votes
1answer
62 views

How to configure Eclipse CDT with GDB debugger

I went through few queries on Eclipse CDT and GDB but I am getting more confused. I am a newbee to both GDB and eclipse. My problem is as follows: I have got test.exe file generated by Cygwin with a ...
0
votes
0answers
40 views

CDT Juno Ubuntu “g++ not in PATH”

Of course g++ is installed and in PATH, but no matter what I do eclipse Juno on Ubuntu does not find it. Has anyone being able to solve that? which g++ gives /usr/bin/g++ g++ is installed on my ...
1
vote
0answers
22 views

CDT-ASTRewrite creation exception

I am trying to create a plugin to manipulate C source files using CDT, I am using ASTRewrite object to modify the C files,Anyway it works correctly except for the following sample file: #define ...
0
votes
0answers
73 views

How to add additional cpp/h files to build configuration in Eclipse

I'd like to know how to add additional files which I've created to build configuration of my CDT project. What I have is: CDT Managed project In that project there's a file called with the name of ...
0
votes
0answers
49 views

Eclipse Juno CDT 'symbole could not resolved' strange behavior

I have just installed eclipse juno cdt on Fedora 16. I have g++ installed. When I first created a hello world C++ project, I have problem of iostream could not be resolved. I corrected it by ...
0
votes
0answers
24 views

How do I re-configure my Eclipse for Java into Eclipse for C/C++?

I know that Eclipse is all plug-in driven, so I just need to download the CDT plugins. However there are too many of them... Do we have a list, or a package, for that purpose? Any help would be ...
0
votes
0answers
19 views

Eclipse GDB using incorrect fullname

I'm using Eclipse with CDT. I have a project that has many executables. It's makefile driven, so all executables are built correctly. Anyway, when I launch a debug session, GDB is pointed to the ...
0
votes
0answers
59 views

Eclipse CDT - how detect and mark unresolved functions?

I don't get it managed that eclipse detects and marks functions that have not been declared before. This only works with undeclared variables, but not functions. For instance: #include ...
0
votes
0answers
35 views

Eclipse CDT / Linker Command Line: Split ${INPUTS} into object files and archives

I want to use recursive linking of static libraries in a project I have been given. The usual command line looks like this: ${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} I ...
7
votes
2answers
480 views

Remote debugging C++ applications with Eclipse CDT/RSE/RDT

I am fighting with Eclipse (in Windows) to make it connect to my Linux box and compile and debug C++ code there remotely. What I have working: CDT/RSE/RDT installed (Eclipse Juno, CDT 8.1.2, ...
0
votes
0answers
15 views

Setting scope for “open element” dialog in Eclipse CDT

Is it possible to define a default scope for the "open element" dialog in eclipse CDT? I often have several revisions of the same project open in my workspace and I don't want "open elements" to ...
1
vote
2answers
187 views

How to take console input for C/C++ program in Eclipse CDT

I have eclipse June CDT with gcc4 and gdb via cygwin on Windows7. I can't seem to taken input from the console. I searched around and it might be related to EOF for eclipse which might be resolved by ...
0
votes
1answer
59 views

including Python.h in C++ file CDT

I apologize if this is a silly question. But I tried to google this and I couldn't find anything to point me in the right direction. I'd just like to understand what I need to do to 'set-up' cdt to ...
2
votes
2answers
66 views

“Open Implementation” in Eclipse CDT

From within Eclipse CDT (Juno), how can I quickly navigate to a the implementation(s) of a function/method declaration? The ctrl-click keyboard shortcut allows me to navigate from the implementation ...
0
votes
0answers
38 views

Invoking CDT debugger Programmatically

I am facing an issue and feeling very difficult to get through it. Actually I want to achieve a feature provided by CDT programmtically. The feature is attach an external process to gdb debugger. ...
0
votes
1answer
26 views

Imported a filesystem in eclipse cdt, added the workspace path, still unable to build shared library

I am trying to build shared library from source in eclipse cdt. I have added the paths. Still I get the fatal error of header files not being found. Please note that I have successfully compiled it ...
0
votes
1answer
55 views

Can't get ITranslationUnit for creating an AST of an C-File within a Eclipse Plugin

I'm trying to generate an AST with help of the CDT Eclipse Framework from an C-File of a generated project in my workspace. But every time i try to get an TranslationUnit through ICElement ice = ...
1
vote
2answers
138 views

Run Configuration for C++ Eclipse

I have just started to learn C++, but I can't get CDT to work with eclipse. I have installed MinGW and MSYS 1.0. When I tried to first run the Hello World tutorial program, I got an error along the ...
1
vote
1answer
116 views

Couldn't use std::unordered_map in my code

I couldn't use std::unordered_map in my code, but it work fine with std::tr1::unordered_map. Is that a known issue? What should I do if I want to use std::unordered_map instead ? OS: ubuntu IDE: ...
1
vote
0answers
56 views

EClipse CDT/Juno and linker options --start-group

I know the -l and -L options for link but I am looking to set the --start-group and --end-group and all my libraries into my C project (Properties) under CDT/Juno but where do I put this option ???? ...
1
vote
1answer
38 views

Where does Eclipse store make targets?

Does anyone know where Eclipse store the make targets for C makefile projects?
0
votes
1answer
91 views

Eclipse CDT. “Syntax error” when using Symbols

I am developing two embedded projects quite similar (they share most of the code) for the same target. To do so, I created two builds: Build A and Build B. Each build has some minor differences ...
1
vote
0answers
57 views

Eclipse CDT Error on OSX

I'm getting two errors on my c++ eclipse project: -can't link with a min executable for architecture i386 -make: * [project name] Error 1 Any ideas on how to fix this issue? I've added the -arch ...
0
votes
0answers
24 views

Eclipse CDT: How to display build issues for ALL build configurations

I'm using the "Build Configurations" feature to generate multiple output files from the same source code, each build configuration defining a specific set of preprocessor directives. When I do a ...
0
votes
1answer
66 views

How to open iCloud CDT file

I found this site which details iCloud a bit more, on it, it talks about .CDT files and how they can be 'unzipped' and read as a .plist. As I am having issues with iCloud I thought I could at least ...

1 2 3 4 5 9