Tagged Questions
3
votes
2answers
94 views
eclipse CDT:copying library paths from debug to release mode
I have been developing a C++ app and running in debug mode, I have now set active build to release mode and have realized that I have to re-add all of the include paths and libraries (there are a lot ...
2
votes
1answer
240 views
Incremental Build: Eclipse CDT does not notice that source has changed
When clicking the "Build" symbol in Eclipse CDT, it is supposed to build only the source files which have changed. A very annoying behavior of Eclipse CDT is that it very often ignores that "minor" ...
0
votes
0answers
126 views
Slow build time in Eclipse Juno CDT/C++
Found this Tricks to speed up Eclipse but can't find this option in Eclipse Juno (its for Indigo in the link). I am using Eigen and Boost libraries in an Xubuntu virtual machine. It always takes ...
0
votes
0answers
260 views
Eclipse CDT - Nothing to Build
I am currently trying to figure out how to use Eclipse Juno with the CDT plugin for a Computer Science class. However, some errors I have encountered (and currently am trying to deal with) is getting ...
2
votes
1answer
670 views
Eclipse build configuration for OpenMP
I am trying to learn OpenMP, starting with the following simple snippet
#include <stdio.h>
#include <stdlib.h>
int main(void) {
#pragma omp parallel
printf("Hello OpenMP!\n");
...
1
vote
1answer
237 views
Eclipse CDT and Compiling C++ Templates
I have a very basic system I'm using to learn C++ templates. My understanding is that one should include the template definition in the template declaration file and compile that instead of the ...
2
votes
1answer
295 views
Eclipse CDT doesn't clear errors from previous builds
Since upgrading to Eclipse Juno (Eclipse CDT 6), I've noticed that, when I do a "make" for my makefile projects, errors from previous builds such as the following don't get cleared from my "Problems" ...
0
votes
1answer
372 views
Eclipse CDT Giving errors when trying to use SDL in C++
I am getting 4 errors when I attempt to create a SDL project following this tutorial:
http://www.lazyfoo.net/SDL_tutorials/lesson01/windows/eclipse/index.php
Here is the error list:
make: *** ...
0
votes
1answer
1k views
Eclipse CDT, build both static lib and shared lib
How is it possible to make project in Eclipse CDT to target both static library and shared library?
0
votes
1answer
169 views
Adding preinclude header file to Eclipse CDT C project
I'm importing a C project to Eclipse CDT which has a preinclude header file. I want to know if there's an option to preinclude the file in the projects settings, The projects doesn't compile because ...
3
votes
1answer
781 views
eclipse CDT: rebuilding a dependent project
I'm working on a C++ project with eclipse Indigo + CDT running on linux
It's made of a project for a library, and a project with unit tests for this library.
Obviously the second project depends on ...
0
votes
0answers
634 views
eclipse can't build…permission denied
My computer screwed up and I had to reinstall Windows.
Now when I try to compile C++ code with Eclipse, this error comes up:
Assembler messages:
Fatal error: can't create src\ref.o: Permission ...
1
vote
1answer
1k views
headless build with CDT using .cproject configuration
I have a eclipse project with .project and .cproject, and I want automate the building process, for it I use
./eclipse -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data ...
4
votes
3answers
705 views
Why does CDT rebuild my C-project on Ant build in unrelated project?
I have an Eclipse workspace where a CDT project lives together with other unrelated projects. However, when I run "build as Ant build" in one of those projects, CDT insists on rebuilding its projects ...
1
vote
1answer
1k views
eclipse cdt relative include path?
Hey all. I've downloaded and moved the Xerces (v3.1.1) source here: /usr/include/xerces and I can see the source in the project explorer like this:
MyCppProject
Binaries
Includes
[...] // ...
2
votes
6answers
4k views
Build Managment: Eclipse project vs Eclipse Managed Make project
I am developing under Windows, and using Eclipse with CDT to develop C++ applications.
Now, for build management I can create a normal C++ project and Eclipse will completely manage the build ...
13
votes
6answers
5k 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 ...
