码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 14.04下编译shared_ptr失败

时间:2016-05-11 23:18:23      阅读:600      评论:0      收藏:0      [点我收藏+]

标签:

1.错误信息如下

#include <iostream>
#include <memory>
#include <boost/shared_ptr.hpp>

using namespace std;
using namespace boost;

int main(void)
{
    for (int i = 0; i < 10000; ++i) {
        //unique_ptr<int>   int_ptr(new int());
        shared_ptr<int> p;
    }   
    return 0;
}

autopointer.cpp:3:32: fatal error: boost/shared_ptr.hpp: No such file or directory
 #include <boost/shared_ptr.hpp>
                                ^
compilation terminated.
make: *** [autopointer] Error 1

Press ENTER or type command to continue

 

这是明显的找不到头文件的架势阿! 难道还要安装boost库?花了十分钟了解到果然是要安装的啊 !请原谅我这个菜鸟。

2.安装boost库

于是乎,就想了 ubuntu下安装应该很简单的啊 sudo apt-get 应该就能解决了啊。

sudo apt-get install libboost [tab][tab] 就会出现很多的提示

发现这个库 libboost-random1.55-dev 应该是的

所以 sudo apt-get install libboost-random1.55-dev 等了几分钟之后,在编译下上面的源代码解决问题了

ubuntu 14.04下编译shared_ptr失败

标签:

原文地址:http://www.cnblogs.com/L-Lune/p/5483731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!