0
votes
1answer
53 views

TFS Builds using Eclipse CDT from Debian Box

I would like to use TFS Build system from Debian OS, I develop using C++, my IDE is Eclipse CDT. I would like to know if using TFS Build System is possible, if so how? as a side note, My development ...
0
votes
1answer
186 views

Eclipse CDT automatically pulling in /usr/include/boost when not in include paths

I am trying to build a project with PCL. I am using pcl, vtk-5.8 and eigen3. I am also using boost. In /usr/include boost 1.46 is there by default and I have built my own version of boost 1.5.1. ...
2
votes
1answer
230 views

Boost Unit Test compilation fail throught Eclipse

I want to compile following line of code through Eclipse but during built time i will get Error which i can not understand.. Is any one have a solution to solve it. #include ...
5
votes
1answer
281 views

Spurious errors in Eclipse CDT: boost::iostreams

I have the following code in Eclipse CDT (Juno SR1): #include <fstream> #include <iostream> #include <boost/iostreams/filter/gzip.hpp> #include ...
0
votes
1answer
70 views

C++ Static type checking (BOOST) incorrectly flagged by Eclipse CDT

So, I want to use the BOOST libraries to static-time check that my templates are being used by certain base classes, for example: template <class T> class A { // Code here } So, I wanted ...
0
votes
0answers
499 views

Ubuntu / Eclipse / Boost Linker

I've build boost 1.52 using the following commands from the boost source directory: ./bootstrap.sh and sudo bjam install I have also added the /usr/local/lib path to: C/C++ General > Paths ...
2
votes
0answers
255 views

Boost.log: No output in the console or in the output file respectively

I've downloaded and compiled successfully the boost.log sources from svn under Windows 7 using mingw-4.7. IDE: eclipse-juno with CDT. The compilation string for the entire boost-sources (including ...
3
votes
1answer
855 views

Boost “Undefined Reference” to system even after linking

I have the following libraries included from boost in eclipse cdt windows. libboost_filesystem-vc100-mt-1_51 libboost_system-vc100-mt-1_51 From the top of the counsel output (bellow) ...
4
votes
1answer
1k views

Conflict between Boost, OpenCV and Eigen libraries?

my question is somewhat related to Static linking of Boost and OpenCV libs with Eclipse CDR. errors, whereas I'm trying to do a bit more than described here: How to create a program that can read all ...
0
votes
2answers
1k views

Static linking of Boost and OpenCV libs with Eclipse CDR. errors

I try to link my project statically with the Boost and OpenCV libs in Eclipse CDT. I have searched Google which libraries I have to add and added them to the linker. But the error messages are still ...
3
votes
1answer
802 views

undefined reference to WinMain@16 when using boost with MinGW

I'm programming in C++ with Eclipse under Windows 7. My makefile is as follows: build: g++ -shared -o "lib\libCacheOpt.a" "src\*.cpp" -enable-auto-import -I"${CWD}\include" -I"${BOOST}" ...
4
votes
1answer
325 views

how do I point my compiler and linker in Eclipse and Windows?

I downloaded boost. The instructions at the website said this: In this example, you would point your linker at C:\lib\boost\lib and tell your compiler to search for includes in C:\lib\boost and ...
6
votes
3answers
9k views

Eclipse CDT: How to reference 3rd party includes via a Relative path

I'm new to Eclipse-CDT, setting up a new project for the first time. I'm trying to reference Boost without hardcoding an absolute path. I've put boost in my workspace folder, e.g. ...