ArchLinux 安装boost库

如果用pacman -S boost-libs安装,只能得到一堆.so .a文件,并没有头文件

用pacman -Ss boost 查找一下

[root@dell_xps_13 dean]# pacman -Ss boost
extra/boost 1.60.0-4
    Free peer-reviewed portable C++ source libraries - development headers
extra/boost-libs 1.60.0-4 [installed]
    Free peer-reviewed portable C++ source libraries - runtime libraries
community/websocketpp 0.7.0-1
    C++/Boost Asio based websocket client/server library
如果要获得开发用的头文件,需要再安装一次

pacman -S extra/boost # 或者 boost也可以


这样就获得头文件了。

你可能感兴趣的:(ArchLinux 安装boost库)