随笔分类 -  Linux programming

摘要:需要使用cmake的find_package将boost库添加到项目中,通过cmake --help-module FindBoost 可以查看cmake引入Boost的帮助信息: 可以看到,Boot_LIBRARIES确实是boost相关的库,刚开始编写的CMakeLists.txt文件如下: cmake_minimum_required(VERSION 2.8.4) project(boos... 阅读全文
posted @ 2018-05-09 14:47 justinzhang 阅读(1216) 评论(0) 推荐(0) 编辑
摘要:1: /* 2: author:justinzhang 3: email:uestczhangchao@gmail.com 4: time:2012-8-22 16:23:08 5: desc: mmap()practice from man mmap 6: */ 7: #include <sys/mman.h> 8: #include <sys/... 阅读全文
posted @ 2012-09-01 23:35 justinzhang 阅读(445) 评论(0) 推荐(0) 编辑
摘要:1: /* 2: @@ 3: Author: JustinZhang 4: Email: uestczhangchao@gmail.com 5: Time: 2012-9-1 23:32:22 6: desc: Example from man, write by hand, test under ubu... 阅读全文
posted @ 2012-09-01 23:34 justinzhang 阅读(272) 评论(0) 推荐(0) 编辑
摘要:1: /* 2: author:justinzhang 3: email:uestczhangchao@gmail.com 4: time:2012-8-22 18:50:23: 5: desc: a buggy program from bbs.qshpan.com, i use strerror(errno) to locate 6: the proble... 阅读全文
posted @ 2012-09-01 23:31 justinzhang 阅读(1044) 评论(0) 推荐(0) 编辑
摘要:1: /* 2: author:justinzhang 3: email:uestczhangchao@gmail.com 4: time:2012-8-30 22:53:33 5: desc: from a interview question, fork plus printf buffer is a littel tricky~~ 6: */ 7: ... 阅读全文
posted @ 2012-09-01 23:30 justinzhang 阅读(178) 评论(0) 推荐(0) 编辑
摘要:1: /* 2: Author:Justinzhang 3: email:uestczhangchao@gmail.com 4: time:2012-8-30 22:17:23 5: desc:fork problem, from www.qshpan.com 6: */ 7: 8: #include <stdio.h> 9: #inclu... 阅读全文
posted @ 2012-09-01 23:29 justinzhang 阅读(302) 评论(0) 推荐(0) 编辑
摘要:一、在安装模块是出现如下错误: 查看模块信息的命令,如下所示: 而系统的内核版本是: 屏幕剪辑的捕获时间: 2011-07-04 16:20 所以编译模块用的版本号和系统的内核版本不统一,这样内核就会报错,这个功能是用配置选项CONFIG_MODVERSIONS 决定的,如下图: 其中一种解决办法,http://apps.hi.baidu.com/share/detail/14755964 ,当然... 阅读全文
posted @ 2011-07-18 15:55 justinzhang 阅读(7518) 评论(2) 推荐(0) 编辑