Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install boost devel on archlinux

I have a remote server configured on archlinux and I need to install the dev version of the boost libs in order to compile my program, more specifically <boost/asio.hpp>.

I tried sudo pacman -S boost-libs and it installed something but not the devel files, I also tried sudo pacman -S boost-libs-dev and it didn't work.

Thanks

like image 387
coyotte508 Avatar asked Jun 25 '12 22:06

coyotte508


1 Answers

$ pacman -Ss boost
extra/boost 1.49.0-2 [installed]
    Free peer-reviewed portable C++ source libraries - Development
extra/boost-libs 1.49.0-2 [installed]
    Free peer-reviewed portable C++ source libraries - Runtime

You need "boost".

like image 128
WhyNotHugo Avatar answered Oct 16 '22 03:10

WhyNotHugo