本文一共包含了17个步骤,按照下面的步骤就可以完成vs2010中编译log4cxx的工作了。
1. 下载 log4cxx 以及 apr 和 apr-util源码:
a)
b)
c)
2. 将 3个压缩包解压到同一个目录.如下图:
3. 将 apr-1.2.11重命名为 apr, 将 apr-util-1.2.10 重命名为apr-util.如下图:
4、打开cmd窗口,如下图所示:
5、在4中输入:cd
6、在5中输入:configure.bat
7.
手动修改 apr-util\include\apu.hw里的内容
#define APU_HAVE_APR_ICONV1改为
10. 使用VS2010打开 apache-log4cxx-0.10.0\projects 下的 log4cxx.dsw
打开工程会提示转换:
11、转换好后工程如下图:
12、将 log4cxx设置为启动项.
设置前:
设置后:
13.开始编译.log4cxx
出现
c) 将
#define LOG4CXX_LIST_DEF(N, T) \
template class LOG4CXX_EXPORTstd::allocator<T>; \
template class LOG4CXX_EXPORTstd::vector<T>; \
typedef std::vector<T>N
替换为:
#define LOG4CXX_LIST_DEF(N, T) \
typedef std::vector<T>N
出现
双击第一行出错输出, 将 136 和 148 行的 #if MCAST_JOIN_SOURCE_GROUP 注释,替换为 #if defined (group_source_req)
出现
'4>..\src\main\cpp\stringhelper.cpp(64):error C2039: “insert_iterator”: 不是“std”的成员'等错误.
在该 .cpp中(stringhelper.cpp) 加入头文件#include<iterator>
将 apr, aprutil, xml添加至 log4cxx 的引用中.(按照下面4副图的顺序操作)
17.选择重新生成解决方案.
编译成功后:
到此log4cxx编译就完成了。