摘要:
先到Google Code将protobuf的源码下载到本地。 如果环境依赖满足,直接configure,然后make&&make install便可了。不过貌似Google的人在安装脚本里少了点东西,在make install之后,我们还需要手动执行一下 命令: ldconfig,更新一下系统的动态链接绑定和所有so的链结。 在使用protobuf进行编程时还需加入编译选项 -pthread -I/usr/local/include 链接时需加入 -L/usr/local/lib -lprotobuf -pthread 方能正常链接。 阅读全文
摘要:
这两天在做平台移植,程序从windows平台移植到linux下运行,着实麻烦哦~时间获取部分:localtime_s和localtime_r的参数是相反的,囧。。。。#ifndef linux localtime_s(&tm_now,&tNow);#else localtime_r(&tNow,&tm_now);#endif 对于systemtime 和tm 以及time_t 的转换// 功能: linux版的GetLocalTime获取本地时间void GetLocalTime(SYSTEMTIME* lpSystemTime){ struct timeval 阅读全文