1. Glog下载
官网:
https://code.google.com/archive/p/google-glog/
github:
https://github.com/google/glog
csdn<vs2015 编译x64-release版本>:https://download.youkuaiyun.com/download/zfjbit/10829299
2. 如果下载的是源码,需要重新编译:
利用Visual Studio打开google-glog.sln。生成解决方案:
可能遇到的错误:
打开google-glog.sln
编译
错误1:’min’不是std的成员
解决方法:
添加头文件#include<algorithm>
错误2:warning C4005: “va_copy”: 宏重定义
解决方法:
修改文件port.h,117行改为:
#undef va_copy
#define va_copy(dst, src) (dst) = (src)
错误3:
error C2084: 函数“int snprintf(char *const ,const size_t,const char *const ,…)”已有主体
c:\program files (x86)\windows kits\10\include\10.0.10150.0\ucrt\stdio.h(1932): note: 参见“snprintf”的前一个定义
解决方案:
修改snprintf的名字,比如改为snprintf_glog,记得所有的都要改
错误4:
d:\glog\glog-0.3.3\src\windows\glog\logging.h(1264): error C2280: “std::basic_ios
重新编译
成功
在Release或者debug文件夹下就有我们想要的libglog.dll libglog.lib等我们想要的文件
3. vs2015 测试
可参考:https://blog.youkuaiyun.com/u010212101/article/details/78419123?utm_source=blogxgwz0