Questions tagged [boost-system]

20 questions
0
votes
1 answer

How can I properly link/build Boost library?

guys, almost going crazy with this subject. I have a big software to be installed and one of its requirements is boost library. I build it with intel toolset, but always when I trying to make software it gives me this…
Igor Kolesnikov
  • 133
  • 1
  • 8
0
votes
0 answers

'': cannot convert from 'cmdline_error' to 'boost::system::system_error'

My project has been using boost 1.58 for ages. Now i have upgraded the visual studio version to 2017. And boost version 1.68.0 Boost 1.68.0 has some changes in its error_code class which breaks our build. getting the following error Error C2440 …
0
votes
1 answer

boost::system::generic_category undefined after statically linked

I am building a shared library, which is statically linked against boost as below: /usr/bin/c++ -fPIC -Wall -Wshadow -g -Wl,-Bstatic -lboost_date_time -lboost_thread -lboost_filesystem -lboost_system -Wl,-Bdynamic -ldl -shared…
Li Zhanhui
  • 61
  • 4
0
votes
1 answer

Statically link Boost Thread 1.56 lib in an Xcode 6 project

I have a very simple Xcode 6 project in which I'm trying to link to boost_thread and boost_system statically. I've build the libraries (I have the libboost_thread.a and libboost_system.a), I've included all the right header/library search paths,…
bitwise
  • 541
  • 6
  • 16
0
votes
1 answer

Statically linking Boost System in a DLL for use in another program

I am currently trying to write a DLL for use in another program. In this DLL I am using condition variables which are in boost::thread which requires boost::system. I want to link the boost libraries statically so that my program only needs my dll…
Andre
  • 115
  • 1
  • 7
1
2