Tagged Questions
0
votes
0answers
6 views
Eclipse CDT - How to map some path to another path?
I check out one directory from our project to F:\project\display. However, in the project display is located under app/service/display relative to the project root. We use full path include in the ...
0
votes
0answers
6 views
Build directory in eclipse keeps changing back to default every time I open properties for a project
I have an external build system and everything I open the project properties it changes the build directory under C/C++ Build under the Builder Settings tab back to the default. Is there any way so it ...
0
votes
1answer
22 views
Building a multi module C project (i.e. solution) with Eclipse CDT
I am moving from Netbeans to Eclipse (on Ubuntu 12.0.4). I have a C application that consists of several sub projects which are libraries (shared and static), as well as stand alone executables.
I ...
1
vote
1answer
21 views
How to remove Eclipse project related files without deleteing the source from Eclipse
Whenever we want to create an Eclipse project with an existing source location, we will choose the existing source location(root) as the project location. Eclipse will create all the project specific ...
2
votes
1answer
28 views
How to setup debugger in Eclipse Juno for C/C++ on windows
I installed Eclipse Juno for C/C++ Developers.
I created a small sample project with a few .c and .h files and a makefile. The project seems to compile fine and creates an executable. I'm then able ...
-1
votes
0answers
26 views
Arduino and eclpse do not make .hex file
I am trying to make arduino work with eclipse.I have the avr plugin, i was working until a sudden format so i know how this works.
After I installed the plugins to eclipse and imported the ...
0
votes
0answers
8 views
Eclipse CDT Project References
In eclipse CDT by adding ProjectA to ProjectB's Project References (Properties->Project References) causes Project A to be built every time Project B is built. It also indexes the code in Project A as ...
0
votes
0answers
22 views
Serial port of Arduino hangs with Eclipse
I have installed tm +rse and the RXTX plugin for terminal communication with Eclipse and Arduino. I used juno and indigo. I have installed the latset FTDI drivers. I am using OS X.
Everytime I ...
0
votes
0answers
5 views
Eclipse - Update libraries with new implemented methods in C++
I am using Eclipse CDT on Ubuntu 12.04 LTS and I just implemented a method on one of the libraries located on /usr/include/
The method is working, I can use it and it is working as it should be. But ...
0
votes
0answers
15 views
How to make LinuxTools valgrind memcheck to break on an error when using with eclipse?
I really like the LinuxTools memcheck tool. The ability to run valgrind from inside eclipse is a good thing. However I would really like to have it stop when it encountered an error. I.e. something ...
0
votes
1answer
30 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
0answers
12 views
Getting Eclipse CDT to honor C macro in included header-file
Eclipse's CDT doesn't appear to be honoring a C macro when it parses a system header file. The CDT tells me that "Field 'ip_mreq' is unresolved" in the following file:
#ifndef __USE_MISC
# define ...
1
vote
0answers
25 views
Cursor placement when calling a method with void parameters
This is a fairly straight forward question but I am unable to find an answer about this specific type of formatting. I'm looking for a way to modify where eclipse places the cursor after using its ...
0
votes
0answers
44 views
How to generate Eclipse-CDT help book documentation from user documented code
I'm using Eclipse-CDT (Juno) v4.2.2 for my C++ development. Within Eclipse, if you goto
Project->Properties->C/C++ General->Documentation
you will see the following Help Books displayed as ...
0
votes
0answers
10 views
Eclipse opens declarations in [Target] files instead of in source files
I have recently started using Eclipse for C++ programming in Linux and have encountered an annoying problem. When I from a .hpp file open a definition of a member function (by ctrl + click, or by ...
0
votes
0answers
35 views
plugin for plotting 2d 3d in eclipse C/C++
Well i want to plot data from my arduino serial port to 2d and 3d and i can not find any plugin for Eclipse to do it internal.Is there any? Also is there any other program that can do it easily ...
0
votes
1answer
25 views
Eclipse CDT: How to find all the places that a variable is modified
Is it possible in Eclipse CDT to do a search on a variable name and only show results where a variable is modified or potentially modified? For example, the variable appears on the left-hand side of ...
0
votes
1answer
29 views
variable should visible to only present function in xtext
My output file:
reg1 {
field a field b
}
reg2 {
field c field d
}
FOREACH ( X IN reg1 ) {
X . a
}
FOREACH ( Y IN reg2 ) {
Now after this if I do ctrl+space I will expect only Y should pop-up. ...
1
vote
1answer
127 views
Eclipse Juno CDT: Incompatibility with C++11 and debugging issues
Facing variety of issues with the latest Eclipse Juno in Ubuntu 12.04, after switching from Indigo.
I have set below flags in:
Project -> Properties -> C/C++ Build -> Settings -> Tool Settings -> ...
0
votes
0answers
26 views
Getting an Eclipse CDT MISession from a ILaunch
Trying to get the CDT org.eclipse.cdt.debug.mi.core.MISession from a org.eclipse.debug.core.ILaunch
I am programmatically launching a CDT Remote Debug Session:
ILaunch launch = ...
0
votes
0answers
127 views
make: *** [src/Class.o] Error 1 eclipse
ok so i installed CDT for C++ development on my machine. I tried to make it work and followed these [instructions][1] to set everything up. By mistake i have gone into the Project>Properties>C++ ...
0
votes
2answers
55 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) ...
0
votes
1answer
29 views
Automatic mark occurences have stopped working
For some reason since a day or two my mark occurrences in C/C++ code has stopped working.
It works when I toggle the button/shortkey (Alt+Shift+O). But once it is on it will not automatically update ...
2
votes
1answer
38 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 ...
0
votes
0answers
35 views
What is the best way to manage Eclipse/CDT build configurations?
We are aiming to leverage software reuse in embedded ARM/Linux platforms. Some of our hardware platforms are designed for customers' specific needs. Of course the application would be customized in ...
0
votes
0answers
59 views
boost::format and boost::str report error after added -std=c++11
I dont know why after I added -std=c++11, my application still build success, but code editor red underline my boost::format and boost::str. And I could not resolve it.
my environment ubuntu eclipse ...
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
29 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;
...
0
votes
0answers
40 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
50 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
39 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
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
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
42 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
0answers
53 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
1answer
92 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 ...
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
161 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
0answers
102 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
2answers
95 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
168 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 ...
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 ...


