Tagged Questions
0
votes
0answers
18 views
VS 2010 looking for wrong boost lib?
I'm trying to use #include "boost/date_time/gregorian/gregorian.hpp" but wind up with the error message LINK : fatal error LNK1104: cannot open file 'libboost_date_time-vc100-mt-gd-1_51.lib' VS is ...
0
votes
1answer
23 views
Error in building boost:python code
I've the following boost:python code(gona.cpp).
#include <iostream>
using namespace std;
void say_hello(const char* name) {
cout << "Hello " << name << "!\n";
}
...
0
votes
0answers
68 views
(boost) cannot open file 'boost_python-vc100-mt-gd-1_53.lib'
So, I downloaded boost_1_53_0, and ran bjam. After linking the "libraries" and the "includes" as per the preamble, I ran my Visual C++ solution and i get the following error
LINK : fatal error ...
0
votes
1answer
65 views
boost serialization run-time error with strings in windows
We are testing a very simple serialization code with boost::serialization. The test simply writes a std::string in a file.
It compiles ok but the problem is that it throws an exception when << ...
0
votes
0answers
272 views
LINK : fatal error LNK1104: cannot open file 'boost_unit_test_framework-vc100-mt-gd-1_53.lib' even when I have linked additional libraries for Boost
I am trying to run a file which contains some Boost Test specific code in Visual Studio 2010. The path to the Boost .lib files directory (BOOST_ROOT\stage\lib) has been added through Project ...
5
votes
1answer
96 views
Communication b/w two threads over a common datastructure. Design Issue
I currently have two threads a producer and a consumer. The producer is a static methods that inserts data in a Deque type static container and informs the consumer through boost::condition_variable ...
2
votes
2answers
101 views
How to pass lambda to overridden method with boost::function parameter?
I've got a class with constructors defined like this:
LambdaJSONVisitor();
LambdaJSONVisitor(boost::function<void (const Value &)> f);
LambdaJSONVisitor(boost::function<void (const ...
1
vote
1answer
144 views
error C2182: '*' : illegal use of type 'void' c:\boost_1_53_0\boost\smart_ptr\intrusive_ptr.hpp
I'm trying to develop a websocket++ server on my windows 7 laptop for ease (not good with vi yet, don't want to constantly ftp). I will move to Ubuntu 12.10 at the end.
I'm using a Visual C++ Win32 ...
1
vote
0answers
145 views
Error compiling Boost.Python quickstart
I've been trying to compile the Boost.Python 'quickstart' ($BOOST_PATH\libs\python\examples\quickstart) examples and have run into an issue.
First, my environment:
OS: Windows 7 Ultimate 64 bit
...
1
vote
1answer
74 views
Linker issue with boost asio
I am trying to run the following code example for Boost Asio on VS2010 - 64bit. Taken from Link
#include <boost/asio.hpp>
#include <boost/array.hpp>
#include <iostream>
#include ...
0
votes
0answers
120 views
Compiling Liblas
I am trying to install the library libLAS. I’m working with Microsoft Visual Studio 2010 , windows 7 and Cmake 2.8.10.2 . So far I’ve Installed Boost 1.51 and I followed this tutorial:
...
1
vote
0answers
44 views
Boost 1.52.0 Cannot find lexical_cast.hpp
I am using Visual Studio 2010. I try to utilize the "C++ String Toolkit Library". It cannot find "lexical_cast" folder or "lexical_cast.hpp", in the boost folder. Any work around solution? Is it ...
0
votes
2answers
169 views
Already defined in .obj - no double inclusions [closed]
I happened to get that already defined in .obj error. This is structure of my project:
main.cpp
#include "main.h";
main.h
#include <iostream>
#include <string>
#include ...
1
vote
0answers
1k views
fatal error LNK1104: cannot open file 'libboost_date_time-vc100-mt-gd-1_53.lib' - file ignored, no matter what i link
I have just bjamed boost and it seems like its still gonna refuse to work (I alread have tried and given up to make this library). What I did was, that I launched bjam.exe and I linked:
include ...
0
votes
1answer
51 views
Modifying global variables from threaded functions and still run the main thread to use the Global varibales
I have a project in Visual C++ 2010 where I have to draw some circles and lines. The coordinates of the circles depend on two global variables. The global variables are modified from two functions, ...