我正在尝试在 CodeBlocks 12.11 上构建和运行 Boost.Log 库。我没有使用 boost 和 boost.log 的经验,并且想学习它,所以首先我需要安装它。
安装升压
首先,我按照有关如何使用代码块安装 boost 的步骤进行操作
结果在两台不同的计算机上(都有 Windows 7)我在 %mypath%\boost\lib 中得到了不同的文件列表(在一台计算机上只有 6 个文件,在另外 52 个)
更大的清单是:
- libboost_chrono-mgw47-mt-1_52.a
- libboost_chrono-mgw47-mt-d-1_52.a
- libboost_date_time-mgw47-mt-1_52.a
- libboost_date_time-mgw47-mt-d-1_52.a
- libboost_exception-mgw47-mt-1_52.a
- libboost_exception-mgw47-mt-d-1_52.a
- libboost_filesystem-mgw47-mt-1_52.a
- libboost_filesystem-mgw47-mt-d-1_52.a
- libboost_graph-mgw47-mt-1_52.a
- libboost_graph-mgw47-mt-d-1_52.a
- libboost_iostreams-mgw47-mt-1_52.a
- libboost_iostreams-mgw47-mt-d-1_52.a
- libboost_locale-mgw47-mt-1_52.a
- libboost_locale-mgw47-mt-d-1_52.a
- libboost_math_c99-mgw47-mt-1_52.a
- libboost_math_c99-mgw47-mt-d-1_52.a
- libboost_math_c99f-mgw47-mt-1_52.a
- libboost_math_c99f-mgw47-mt-d-1_52.a
- libboost_math_c99l-mgw47-mt-1_52.a
- libboost_math_c99l-mgw47-mt-d-1_52.a
- libboost_math_tr1-mgw47-mt-1_52.a
- libboost_math_tr1-mgw47-mt-d-1_52.a
- libboost_math_tr1f-mgw47-mt-1_52.a
- libboost_math_tr1f-mgw47-mt-d-1_52.a
- libboost_math_tr1l-mgw47-mt-1_52.a
- libboost_math_tr1l-mgw47-mt-d-1_52.a
- libboost_prg_exec_monitor-mgw47-mt-1_52.a
- libboost_prg_exec_monitor-mgw47-mt-d-1_52.a
- libboost_program_options-mgw47-mt-1_52.a
- libboost_program_options-mgw47-mt-d-1_52.a
- libboost_random-mgw47-mt-1_52.a
- libboost_random-mgw47-mt-d-1_52.a
- libboost_regex-mgw47-mt-1_52.a
- libboost_regex-mgw47-mt-d-1_52.a
- libboost_serialization-mgw47-mt-1_52.a
- libboost_serialization-mgw47-mt-d-1_52.a
- libboost_signals-mgw47-mt-1_52.a
- libboost_signals-mgw47-mt-d-1_52.a
- libboost_system-mgw47-mt-1_52.a
- libboost_system-mgw47-mt-d-1_52.a
- libboost_test_exec_monitor-mgw47-mt-1_52.a
- libboost_test_exec_monitor-mgw47-mt-d-1_52.a
- libboost_thread-mgw47-mt-1_52.a
- libboost_thread-mgw47-mt-d-1_52.a
- libboost_timer-mgw47-mt-1_52.a
- libboost_timer-mgw47-mt-d-1_52.a
- libboost_unit_test_framework-mgw47-mt-1_52.a
- libboost_unit_test_framework-mgw47-mt-d-1_52.a
- libboost_wave-mgw47-mt-1_52.a
- libboost_wave-mgw47-mt-d-1_52.a
- libboost_wserialization-mgw47-mt-1_52.a
- libboost_wserialization-mgw47-mt-d-1_52.a
它与 bjam 消息一起安装:
...failed updating 10 targets...
...skipped 16 targets...
...updated 764 targets...
该列表是否已满,或者我安装的 boost 错过了一些库?为什么两台不同的计算机会对相同的操作给出不同的结果(我两次从链接执行相同的步骤)?(只有 6 个结果库的比较没有 VC2010,有 52 个库的比较有 VC2010,这可能是原因吗?)
安装 boost.log
然后,在有 52 个库的机器上,我开始按照如何安装 boost.log 的步骤安装 boost.log
并获得了两个额外的库:
- libboost_log_setup-mgw47-mt-1_52.a(大小 22733 kb)
- libboost_log_setup-mgw47-mt-d-1_52.a(大小 74933 kb)
来自 bjam 的下一条结果消息:
...failed updating 6 targets...
...skipped 10 targets...
...updated 225 targets...
然后我从 boost.log 发行版中取样:
#include <iostream>
//#define BOOST_LOG_DYN_LINK
#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
#include <boost/log/common.hpp>
#include <boost/log/formatters.hpp>
#include <boost/log/filters.hpp>
#include <boost/log/utility/init/to_file.hpp>
#include <boost/log/utility/init/to_console.hpp>
#include <boost/log/utility/init/common_attributes.hpp>
#include <boost/log/attributes/timer.hpp>
namespace logging = boost::log;
namespace fmt = boost::log::formatters;
namespace flt = boost::log::filters;
namespace sinks = boost::log::sinks;
namespace attrs = boost::log::attributes;
namespace src = boost::log::sources;
namespace keywords = boost::log::keywords;
using boost::shared_ptr;
int main(int argc, char* argv[])
{
logging::init_log_to_console(std::clog, keywords::format = "%TimeStamp%: %_%");
logging::add_common_attributes();
src::logger lg;
BOOST_LOG(lg) << "Hello, World!";
return 0;
}
将库添加到项目(以及包含文件的路径):还有 libboost_log_setup-mgw47-mt-d-1_52.a
但是在编译时出现以下错误:
obj\Debug\main.o||In function 'ZN5boost10log_mt_nt57sources12basic_loggerIcNS1_6loggerENS1_19single_thread_modelEED2Ev':|
C:\Program Files (x86)\CodeBlocks\include\boost-1_52\boost\log\sources\basic_logger.hpp|88|undefined reference to `boost::log_mt_nt5::basic_attribute_set<char>::~basic_attribute_set()'|
并且不知道如何解决它们。
请解释一下(如果可能的话):
- 我怎么知道我的 boost 编译/安装是否已满以及该怎么做,如果不是(我确定给我 6 个库的安装没有满,但我不知道该怎么办)?
- 我怎么知道我的 boost.log 编译已满?
- 我读到我必须将 boost.lib 构建为共享对象,但 libs 位于子目录“link-static”中,尽管命令 runtime-link=shared 用于 bjam。我应该对此做些什么吗?
- 我应该怎么处理我得到的错误?
谢谢你的帮助。