CDT is an Eclipse component that provides an IDE for C and C++.
0
votes
0answers
29 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 ...
0
votes
0answers
28 views
Toggle lock on Mark Occurrences
I am in the process of making an API change that removes a parameter to one of my function calls. This was a by-reference parameter, so it gets used a bit after the function call.
int remove_me;
...
1
vote
1answer
56 views
Structuring an eclipse project containing multiple git repositories
I'm using Eclipse CDT and egit and I need to construct a single project from multiple repositories. One contains the main body of the source code and the other contains utility scripts used as part of ...
0
votes
0answers
38 views
Debug a Python C++ extension from Eclipse (under Linux)
I have a C++ project that is called in Python (via boost-python) and I want to debug the C++ code from python process. How can I do that? In Windows with Visual Studio I can use the functionality ...
1
vote
1answer
54 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
0answers
49 views
How do I write a multiline build error parser for Eclipse CDT?
I want to use the Makefile-based builder of Eclipse's CDT (8.1.2) to build an OCaml project.
However, the OCaml compiler outputs multiline error messages with line number and error reason on ...
0
votes
0answers
27 views
eclipse starts debugging before clicking start/resume
Does anyone know why my Eclipse (3.8 with cdt plugin) starts debugging as soon as I click on the debug button?
It normally should go to the perspective and wait for me to click start/resume button.
...
0
votes
0answers
38 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 ...
0
votes
1answer
90 views
Tutorial needed for GNU blackfin toolchain with Eclipse
Any body knows of a good tutorial on using the GNU blackfin toolchain with eclipse on Windows?
I'm trying to start with developing bare metal application on blackfin and I've installed the toolchain ...
1
vote
2answers
105 views
C logical or in if
I know I'm not very good in C but I thought that I could get this right:
if(strlen(type) == 0 || strcmp(type,"in")!=0 || strcmp(type,"out")!=0)
type comes as a char* and I've tested this code with ...
-2
votes
1answer
60 views
C Parameter passing - solution proposed [closed]
The line with the problem:
void deleteController(Controller* ctrl) {
...
destroy(ctrl->repo);
...
}
passing argument 1 of 'destroy' from incompatible pointer type [enabled by ...
0
votes
1answer
36 views
Cannot find iostream - Debian 6
I'm trying to get my feet wet with Debian and so I installed it on a virtual machine. After that's done I installed Eclipse and then the CDT from org.eclipse.cdt.feature.group. The version is 6.0.2.
...
0
votes
0answers
56 views
Implicit declaration in C(modular) [closed]
int createTrans(Controller* ctrl, char* day, char* amount, char* type, char* desc)
{
char* msg = validateTData(day,amount,type,desc);
...
return 1;
}
In a module I have the above function ...
1
vote
0answers
21 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
1answer
11 views
Replace a macro with a different definition in Eclipse?
I'm working on a project which defines globals like this:
// Define an correctly-sized array of pointers to avoid static initialization.
// Use an array of pointers instead of an array of char in ...
0
votes
0answers
40 views
instantiated class of an object
I am debugging a c++ program with gdb in eclipse. How can I now the exact class of an object?
Let's say I am debugging a method
void foo(Instruction *I){
I->bar();
}
Let's say also that ...
0
votes
1answer
90 views
Awkward bug in C program
Console* initConsole(Controller* ctrl){
if (ctrl == NULL)
return NULL;
Console* c = (Console*)malloc(sizeof(Console));
c->ctrl = ctrl;
return c;
}
expected '=', ',', ';', ...
0
votes
2answers
36 views
monitoring static variable inside a function in eclipse CDT
In c, when a variable is defined static within a function, the value of the variable is retained all the time. So probably, it's stored in the bss or data section.
However, in Eclipse CDT debugging, ...
0
votes
1answer
13 views
Is there a way to get the PC register value in CDT Eclipse
Currently CDT is integrated to my Eclipse. I am able to see the PC register value too. My current requirement is I need to provide a button to get the PC register value. So if user click on the button ...
0
votes
0answers
41 views
Integrated development environment context sensitive help for Eclipse CDT
while using eclipse for programming in c++ it would be very convenient to
have the Integrated Development Environment Library at the fingertips by pressing F1 (Like in Visual Studio when pressing F1 ...
0
votes
2answers
45 views
loading numbers in a text file using C
I am trying to write a program that loads numbers in a text file into an array. The text file is called "numbers" and the numbers are in the following format: 3,49,52,40,34 etc..
When I try to run ...
0
votes
1answer
135 views
Nvidia Nsight Eclipse edition remote debugging with C/C++ remote launch configuration
I have a server (Ubuntu server 12.04 LTS - no GUI) with a CUDA-capable GPU installed, and a desktop linux (Fedora 18) machine with no CUDA GPU. I would like to develop my code on my desktop machine ...
0
votes
0answers
52 views
Eclipse CDT's Content Assist Doesn't Suggest Function Pointers' Expected Parameters
I'm working on a project that has many many function pointers each with a different set of parameters. Content assist doesn't work with that, that it doesn't provide assistance with the expected list ...
2
votes
2answers
63 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
36 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.
...
3
votes
1answer
123 views
VxWorks with Eclipse - missing header files
I want to compile a library for VxWorks 6.8 using Cmake and Eclipse 3.7 Indigo CDT (with VxWorks Pentium and Power-PC compilers set). The cmake steps work fine and I get ready-to-use Eclipse project.
...
0
votes
1answer
65 views
Eclipse CDT displays semantic error, but builds successfully
Before I update g++ from 4.6 to 4.7, my eclipse indigo CDT ran normally. After updating, it displays semantic errors, but builds and runs successfully. My code is that
using my_type = int;
Eclipse ...
0
votes
1answer
44 views
Tab completion and automatic Content Assit in Eclipse Juno CDT
I have been using Eclipse CDT for a while now, and the fact of the matter is that, coding can be very slow in the IDE (I use it for the debugger). What I mean by this is, that the auto-pop up (content ...
3
votes
1answer
152 views
Generic solution to Eclipse CDT's symbol 'X' could not be resolved?
I have a project with C++ and C files. The code compiles and runs correctly, but I need to get rid of the following error:
Symbol 'ERANGE' could not be resolved
I was able to reproduce it with ...
0
votes
1answer
89 views
Can I use Eclipse CDT to debug a prebuilt C++ executable?
On Linux, I have some C++ programs built with my own makefiles, and I'm looking for some GUI debuggers to debug them at source level.
Previously I use KDbg(2.5.2) on openSUSE(12.3). It works but with ...
0
votes
0answers
20 views
C/C++ Files above 150KB are not fully indexed in Eclipse CDT8
We have installed
"Eclipse IDE for C/C++ Developers
Version: Indigo Service Release 2
Build id: 20120216-1857" on Linux along with CDT8.
The problem is, the file size above 150KB is not fully ...
0
votes
0answers
67 views
Eclipse Juno Doesnt show values in debug mode
I am trying to debug a C++ code (Namely source of wsdlPull) and I am using Eclipse Juno and my debugger version is 7.4 (GNU gdb (Ubuntu/Linaro 7.4-2012.04-0ubuntu2) 7.4-2012.04)and I am using Ubunutu ...
1
vote
1answer
93 views
How do I use std::cout with Eclipse CDT's Unit Testing support?
If I use std::cout in my simple unit test in Eclipse CDT, I get the error message:
"XML parse error: Content is not allowed in prolog."
However, if I delete the line with the "cout" message then the ...
0
votes
1answer
144 views
GCC - Symbol could not resolved in C
I have a source file 'foo.c' which includes 'foo1.h' and 'foo2.c'.
foo1.h
#include "pthread.h"
#define MACROFOO() PTHREAD_MUTEX_INITIALIZER
// Few other macros
foo2.h
#include "pthread.h"
...
1
vote
1answer
50 views
Idiomatic Eclipse Workflow Organization?
I'm currently moving to a Ubuntu/Eclipse CDT setup from Windows/Visual Studio, and having difficulty trying to find analogues to my previous workflow. Previously, I generally organized distinct ...
1
vote
0answers
159 views
eclipse cross gcc toolchain wrapper plugin
I currently have Eclipse CDT working with a managed Cross GCC toolchain just fine. The only down side is any time I create a new project, I need to manually add all the special gcc flags for my cross ...
0
votes
1answer
67 views
Precision of the inspected floating-point values
I have this question because of the previous one. There I had a value 25.3999996185302734375 which was shown as 25.399999618530273 (without last 4 digits) in both Visual Studio 2010, Eclipse CDT, and ...
2
votes
1answer
48 views
Organize a C++ solution shared by eclipse and msvc
I know this subject could be somehow subjective but I need some ideas.
I'm trying to reorganize my game engine code. The project is divided in modules (core, Log, ...) and for each module (or project) ...
0
votes
1answer
107 views
Eclipse CDT - errors: “undefined reference to n”?
I'm not entirely sure if this belongs here or on electronics.stackexchange.com, but since this is to do with IDE setup, and compilation, I believe this is the best place to ask my question.
I've got ...
0
votes
0answers
98 views
No Option for C Project in Eclipse after CDT installation [closed]
I have a problem after I installed CDT in Eclipse. The installation was successful. However, when I tried a project in C/C++, there is no selection for C/C++ Project in Menu File -> New. I have tried ...
0
votes
1answer
195 views
/usr/bin/ld: cannot find -lCImg
I am newbie in C++ and Eclipse simultaneously...
I want to use CImg library but when I just used a line for it I have the problem that it is described below :
My code is:
#include "CImg.h"
using ...
0
votes
2answers
94 views
How to install list of eclipse plugins from a script?
I need a way to setup a highly customized eclipse coding environment in a fully unattended way from a script in linux. The customized eclipse environment requires the installation of about 10 ...
1
vote
2answers
165 views
Using malloc() and other functions in C using Eclipse
This is the first time I've used Eclipse for writing C code, so the answer might be very simple. I'm also figuring that Eclipse is already setup to compile, build, and link appropriately. This is ...
1
vote
0answers
132 views
Create Qt UI forms as a shared library in Qt Creator and using them in Eclipse C++ project
I am developing an application and the main IDE is Eclipse Juno(CDT) on Red Hat Enterprise Linux 6.
I have the following constraints:
Application must be developed on Eclipse (Non-GUI part)
Must ...
0
votes
0answers
133 views
Eclipse CDT Windows 7 64bit Cygwin gcc cout could not be resolved
I am using the subject IDE to include Cygwin GCC compilation.
At first, Eclipse couldnt resolve iostream, so I searched the internet and included the necessary lib files containing header.
But now ...
1
vote
1answer
41 views
SFML linker problems on eclipse VC++
I am trying to use the SFML library for audio in my project.
I am developing in eclipse juno for c++ and am using SFML v1.6.
I added sfml-audio-d.lib, sfml-main-d.lib, and sfml-system-d.lib into
...
0
votes
0answers
47 views
Eclipse coloring code from a file or makefile?
I am developing a c code for embedded application using makefile and Eclipse and I want to add some external global symbols or preprocessor to Eclipse indexer, because I want to use the coloring ...
0
votes
2answers
48 views
Eclipse direct shortcut instead of yellow popup?
How do I remove this middle step of having to press enter after F12 to make the actual navigation? I don't need this yellow popup telling me there's one shortcut for me.
In the second image you ...
1
vote
0answers
56 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
23 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 ...







