Questions tagged [boost]

39 questions
15
votes
1 answer

How does gcc know where boost is installed

I installed boost using sudo apt-get install on Ubuntu. Later I did not have to give gcc the I flag alongwith the path to the boost libraries to use boost ! Nor did I do any pkg-config --cflags --libs of any sort. What is the mystery here ? How is…
Chani
  • 418
  • 2
  • 7
  • 16
9
votes
3 answers

Set LD_LIBRARY_PATH correctly

I am using Docker with image of Ubuntu 16.04. I am using this docker to run: Import C++ classes in python with the help of boost.python Import matlab's python package in python with the help Matlab Runtime (MCR). Before I have installed MCR in the…
Coderji
  • 117
  • 1
  • 1
  • 10
6
votes
3 answers

How to install a custom boost version in CentOS?

I'm trying to compile and install boost 1.54 from source in CentOS. The documentation is pretty straight forward and there are plenty of tutorials in the internet available (1) (2) (3). This is what I did: wget…
q9f
  • 2,308
  • 8
  • 29
  • 39
6
votes
3 answers

Are the boost headers separately packaged under Fedora?

The boost C++ library consists of several components. Some components do include shared libraries, other don't. Under a Fedora 14 system I've looked a bit around with yum search boost and rpm -qR and indeed like with other distributions the boost…
maxschlepzig
  • 56,316
  • 50
  • 205
  • 279
5
votes
0 answers

Boost: compile latest source or use add-apt-repository?

Boost: compile latest source or use add-apt-repository I’m at a junction should I go one way or another…? Boost 1.55 is part of Raspian Jessie stable, and the advice when installing Domoticz is to use the latest Boost (by compiling the source...),…
Geoff
  • 196
  • 8
4
votes
2 answers

Meson doesn't find the Boost libraries

I want to use Meson to build a new c++ project. The first thing I need is a dependency for the Boost library. But though the Boost libs are installed on my Arch system (headers and libs), Meson complains that it doesn't find them. Here is the…
yolenoyer
  • 469
  • 3
  • 20
4
votes
1 answer

How to uninstall BOOST 1.49 and install BOOST 1.54 in ubuntu?

I have a boost 1.49 in my ubuntu system. And I am trying to uninstall boost 1.49 and completely remove it from my system. And after that install the Boost 1.54.0 I did like this to uninstall 1.49 from my system - sudo apt-get --purge remove…
arsenal
  • 3,053
  • 17
  • 44
  • 49
4
votes
2 answers

Confusion about linking boost library while compilation

For a client I needed to add boost 1.54 to the system. So I downloaded the latest version (1.55) and built it within a special directory: /usr/local/lib/boost1.55/. This works. Then I had to adapt the Makefile in this way. LIBS =…
Bevor
  • 671
  • 2
  • 11
  • 22
3
votes
1 answer

How to install the latest version of gcc and boost on an old version of openSUSE?

I need to install gcc 5.2 and boost 1.62 on openSUSE 11.4. The point is that the official version of these two tools on openSUSE 11.4 is gcc 4.5 and boost 1.44. I tried to build them from source code, but the problem is that regarding to lots of…
TonySalimi
  • 157
  • 1
  • 1
  • 7
2
votes
2 answers

Boost continually fails to download while using cmake for ethminer

I've been stuck with this since this morning. Basically I ran into an issue with this cmake .. -DETHASHCUDA=ON -DETHASHCL=OFF command while following this https://medium.com/coinmonks/eth-x-nvidia-x-ubuntu-1980393a36f8 tutorial. Things I know for…
2
votes
1 answer

CentOS does not recognize compiled boost library

I have built and installed boost using the following steps: # Boostrap and install JOBS=`grep -c ^processor /proc/cpuinfo` wget https://dl.bintray.com/boostorg/release/1.67.0/source/boost_1_67_0.tar.bz2 tar xf boost_1_67_0.tar.bz2 cd…
Mehdi Haghgoo
  • 543
  • 3
  • 8
  • 22
2
votes
1 answer

Linux Boost compilation

I compiled boost by this method on Windows: Go to the directory tools/build/v2/. Run bootstrap.sh Run b2 install --prefix=PREFIX where PREFIX is the directory where you want Boost.Build to be installed Add PREFIX/bin to your PATH environment…
itun
  • 657
  • 2
  • 6
  • 8
2
votes
1 answer

undefined symbol: _ZN5boost15program_options11to_internalERKSs

I' trying to setup mycoin on my digitalocen vps (ubuntu 16 bit 64)and in-counted following error i have search solution for 2 days and nothing resolved this issue boost version : 1.54 Error : /usr/bin/bitgamecoind: symbol lookup error:…
DarshanaK
  • 155
  • 1
  • 3
  • 9
2
votes
1 answer

Where is boost installed on Debian?

I currently don't have a lot of internet quota so I didn't want to install the latest boost libraries. Instead I installed Boost 1.49 using the Synaptic Package Manager and my Debian DVDs. Now that boost (seems to be) installed, how I can I include…
quant
  • 4,061
  • 10
  • 34
  • 50
2
votes
1 answer

How to compile with third party libs properly?

This is a follow up question to Confusion about linking boost library while compilation: What is to do, when I generate a Makefile by qmake and I have only a third party boost lib installed (I uninstalled all boost libs from dependency management,…
Bevor
  • 671
  • 2
  • 11
  • 22
1
2 3