- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编译从 here 获得的代码.我已经使用 sudo apt-get install libboost-all-dev 在 Ubuntu 上安装了 boost 库。安装很顺利,我能够编译所有示例。然后我尝试了 example found here使用 boost::asio 和谷歌 Protocol Buffer 。 Vim 中的 Clang_complete 开始给我一些奇怪的问题,这让我相信我需要更新 boost 的版本。 (从存储库安装 1.46)。
我意识到 Ubuntu 存储库使用的是旧版本的 Boost,所以我决定自己下载并安装它。我用了this安装库的教程(用 ./b2 替换 ./bjam)。这是问题开始的时候。下面的代码在 boost 的 Synaptic 安装中运行良好,但在手动构建之后我遇到了很多错误。我在想缺少了什么,但我不确定我是如何弄清楚我需要安装什么的。
代码如下所示:
#include <boost/asio.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/bind.hpp>
#include <iostream>
boost::mutex global_stream_lock;
void WorkerThread( boost::shared_ptr< boost::asio::io_service > io_service )
{
global_stream_lock.lock();
std::cout << "[" << boost::this_thread::get_id()
<< "] Thread Start" << std::endl;
global_stream_lock.unlock();
io_service->run();
global_stream_lock.lock();
std::cout << "[" << boost::this_thread::get_id()
<< "] Thread Finish" << std::endl;
global_stream_lock.unlock();
}
size_t fib( size_t n )
{
if ( n <= 1 )
{
return n;
}
boost::this_thread::sleep(
boost::posix_time::milliseconds( 1000 )
);
return fib( n - 1 ) + fib( n - 2);
}
void CalculateFib( size_t n )
{
global_stream_lock.lock();
std::cout << "[" << boost::this_thread::get_id()
<< "] Now calculating fib( " << n << " ) " << std::endl;
global_stream_lock.unlock();
size_t f = fib( n );
global_stream_lock.lock();
std::cout << "[" << boost::this_thread::get_id()
<< "] fib( " << n << " ) = " << f << std::endl;
global_stream_lock.unlock();
}
int main( int argc, char * argv[] )
{
boost::shared_ptr< boost::asio::io_service > io_service(
new boost::asio::io_service
);
boost::shared_ptr< boost::asio::io_service::work > work(
new boost::asio::io_service::work( *io_service )
);
global_stream_lock.lock();
std::cout << "[" << boost::this_thread::get_id()
<< "] The program will exit when all work has finished."
<< std::endl;
global_stream_lock.unlock();
boost::thread_group worker_threads;
for( int x = 0; x < 2; ++x )
{
worker_threads.create_thread(
boost::bind( &WorkerThread, io_service )
);
}
io_service->post( boost::bind( CalculateFib, 3 ) );
io_service->post( boost::bind( CalculateFib, 4 ) );
io_service->post( boost::bind( CalculateFib, 5 ) );
work.reset();
worker_threads.join_all();
return 0;
}
现在,当我尝试编译代码时,出现以下错误:
命令行: g++ -o example3a example3a.cpp -lboost_system -lboost_thread编译器输出:
In file included from /usr/include/boost/algorithm/string/replace.hpp:24:0,
from /usr/include/boost/units/detail/utility.hpp:25,
from /usr/include/boost/exception/detail/type_info.hpp:19,
from /usr/include/boost/exception/detail/object_hex_dump.hpp:15,
from /usr/include/boost/exception/to_string_stub.hpp:16,
from /usr/include/boost/exception/info.hpp:16,
from /usr/include/boost/exception/detail/exception_ptr.hpp:20,
from /usr/include/boost/exception_ptr.hpp:9,
from /usr/include/boost/thread/future.hpp:28,
from /usr/include/boost/thread.hpp:24,
from example3a.cpp:3:
/usr/include/boost/algorithm/string/formatter.hpp:102:16: error: ‘dissect_formatF’ in
namespace ‘boost::algorithm::detail’ does not name a type
/usr/include/boost/algorithm/string/formatter.hpp:115:22: error:
‘boost::algorithm::dissect_formatter’ has not been declared
In file included from /usr/include/boost/exception/detail/exception_ptr.hpp:20:0,
from /usr/include/boost/exception_ptr.hpp:9,
from /usr/include/boost/thread/future.hpp:28,
from /usr/include/boost/thread.hpp:24,
from example3a.cpp:3:
/usr/include/boost/exception/info.hpp: In member function ‘virtual
boost::shared_ptr<boost::exception_detail::error_info_base>
boost::exception_detail::error_info_container_impl::get(const
boost::exception_detail::type_info_&) const’:
/usr/include/boost/exception/info.hpp:100:21: error: no match for ‘operator*’ in
‘*boost::exception_detail::type_info_((*(const std::type_info*
(*((&p)->boost::shared_ptr<T>::operator* [with T =
boost::exception_detail::error_info_base, typename
boost::detail::sp_dereference<T>::type = boost::exception_detail::error_info_base&
().boost::exception_detail::error_info_base::_vptr.error_info_base
0xfffffffffffffffffffffffffffffff8u)))).boost::exception_detail::type_info_::type_’
/usr/include/boost/exception/info.hpp:100:21: note: candidates are:
/usr/include/c++/4.6/complex:399:5: note: template<class _Tp> std::complex<_Tp>
std::operator*(const _Tp&, const std::complex<_Tp>&)
/usr/include/c++/4.6/complex:390:5: note: template<class _Tp> std::complex<_Tp>
std::operator*(const std::complex<_Tp>&, const _Tp&)
/usr/include/c++/4.6/complex:381:5: note: template<class _Tp> std::complex<_Tp>
std::operator*(const std::complex<_Tp>&, const std::complex<_Tp>&)
/usr/include/boost/exception/info.hpp:100:21: error: no match for ‘operator*’ in
‘*ti.boost::exception_detail::type_info_::type_’
/usr/include/boost/exception/info.hpp:100:21: note: candidates are:
/usr/include/c++/4.6/complex:399:5: note: template<class _Tp> std::complex<_Tp>
std::operator*(const _Tp&, const std::complex<_Tp>&)
/usr/include/c++/4.6/complex:390:5: note: template<class _Tp> std::complex<_Tp>
std::operator*(const std::complex<_Tp>&, const _Tp&)
/usr/include/c++/4.6/complex:381:5: note: template<class _Tp> std::complex<_Tp>
std::operator*(const std::complex<_Tp>&, const std::complex<_Tp>&)
最佳答案
好的,我让它工作了。我正在按照说明 here但以下似乎搞砸了安装:
/bootstrap.sh --exec-prefix=/usr --libdir=/usr/lib --includedir=/usr/include
(我注意到旧版本的 boost 在/usr/include 和/usr/lib 中。这就是为什么我添加了上面的选项。:(
相反,我简单地尝试了这个:
./bootstrap.sh
./b2
sudo ./b2 install
现在示例编译。
关于c++ - Boost库在ubuntu上产生错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15939279/
我在 Chrome 上做了一些测试,requestAnimationFrame 产生了 61 fps 而 setTimeOut( callback, 0 ) 产生了 233 fps。 如果一个人想要超
当我调试代码时,我发现 GCC 和 Clang 都为 0.0/0.0 产生 nan,这是我所期望的,但 GCC 产生的 nan 将符号位设置为 1,而Clang 将其设置为 0(如果我没记错的话,与
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
我在 R Studio 中有一个时间序列。现在我想计算这个系列的log()。我尝试了以下方法: i <- (x-y) ii <- log(i) 但是我得到以下信息:Warning message: I
我有兴趣了解 JavaScript 的内部结构.我试图阅读 SpiderMonkey 的来源和 Rhino但是绕过我的头是相当复杂的。 我问的原因是:为什么像 (![]+[])[+!![]+[]] 生
我们在 Delphi 中使用标准 TWebbrowser 组件,该组件在内部使用 mshtml.dll。另外,我们使用注册表来确保页面使用新的渲染引擎( Web-Browser-Control-Spe
我必须实现一个序列化/反序列化类,并且我正在使用 System.Xml.Serialization 。我有一些IList类型属性并希望在 IList 中序列化解码属于具有特定区域性信息的列表的所有十进
我有一个 Java 应用程序,它读取包含 SQL 查询的 JSON 文件,并使用 JDBC 在数据库上触发它们。 现在我有 5 万个这样的文件,我需要生成 5 万个独立线程来读取每个文件并将它们上传到
我正在尝试将 TensorFlow 入门页面上的示例线性回归程序调整为二次回归。为此,我只是添加了另一个变量并更改了函数。然而,这似乎会导致 NaN 值。这是我的代码: import numpy as
申请后KernelPCA到我的数据并将其传递给分类器 ( SVC ) 我收到以下错误: ValueError: Input contains NaN, infinity or a value too
这背后的想法是,如果我的数据库中存在登录名(正确的用户名+密码),我将重定向到一个页面,并且在进行此身份验证后,他们可以将消息存储在文本文件中。代码非常简单尽管我不确定为什么会收到 IllegalSt
我有一个返回 log10 值的函数。在将它们转换为正常数字时,出现溢出错误。 OverflowError: (34, 'Numerical result out of range') 我检查了日志值,
nosetests 抛出一个 ImportError,尽管我认为这是一个正确配置的 virtualenv。 ==============================================
我是这个网站的新手,所以如果我做错了什么,我提前道歉。当我尝试使用 kivy-garden 的 ScrollLabel 时,它给了我一个错误。基本上我正在尝试创建一个控制台日志,并且我需要能够在文本框
任何人都对 MDSJ 有任何经验?以下输入仅产生 NaN 结果,我不明白为什么。文档非常稀少。 import mdsj.Data; import mdsj.MDSJ; public class MDS
我有一个非常简单的 scala jcuda 程序,它添加了一个非常大的数组。一切都编译和运行得很好,直到我想从我的设备复制超过 4 个字节到主机。当我尝试复制超过 4 个字节时,我收到 CUDA_ER
我正在使用 Hero 组件在两个页面之间创建动画。Hero 组件用于包装一个 Image 小部件(没问题)和一个 Container 小部件(有问题)。 抛出以下溢出错误: ══╡ EXCEPTIO
我无法理解页面 https://developer.mozilla.org/en/JavaScript/Reference/Operators/Special/void 中的这一段: This ope
当在 Angular 中使用不立即触发事件的异步管道时(http 请求或任何有延迟的可观察对象),第一个值为 null为什么会这样?如何避免这种情况? 第一个变化: SimpleChange {
如果一个导入的库生成了一个会 panic 的 goroutine 怎么办?在这种情况下,开发人员无法阻止程序退出。 就像在这段代码中一样,使用延迟恢复调用一个错误的库没有帮助,因为该库正在生成一个 p
我是一名优秀的程序员,十分优秀!