码迷,mamicode.com
首页 > 其他好文 > 详细

问题集

时间:2016-05-13 19:02:49      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:

1./usr/local/include/boost/config/requires_threads.hpp:29:4: error: #error "Threading    support unavaliable: it has been explicitly disabled with BOOST_DISABLE_THREADS"

答:

#ifdef __GLIBCXX__ // gcc 3.4 and greater:  

#  if defined(_GLIBCXX_HAVE_GTHR_DEFAULT) \  

        || defined(_GLIBCXX__PTHREADS)  

改为:

#ifdef __GLIBCXX__ // gcc 3.4 and greater:
# if defined(_GLIBCXX_HAVE_GTHR_DEFAULT) \
|| defined(_GLIBCXX__PTHREADS) \
|| defined(_GLIBCXX_HAS_GTHREADS) \
|| defined(_WIN32) \
|| defined(_AIX)

 

问题集

标签:

原文地址:http://www.cnblogs.com/kaishan1990/p/5490276.html

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