在线笔记
全部博文(596)
发布时间:2013-04-27 15:29:44
1.下载内核2.make mrproper3.make headers_checkmake INSTALL_HDR_PATH=dest headers_installcp -rv dest/include/* /tmp/k_include/1.下载GLIBC-2.10.1.TAR.BZ22.tar -jxf GLIBC-2.10.1.TAR.BZ2 && cd glibc-2.10.13.echo "CFLAGS += -march=i486 -mtune=native -U_FORTIFY_SOURCE -fno-stack-protector" > c.........【阅读全文】
发布时间:2013-04-26 11:30:34
gprof的基本用法:1. 使用 -pg 选项编译和链接你的应用程序 ,在gcc编译程序的时候,加上-pg选项,如果是大项目,就在makefile里面修改编译选项,-pg放在那里都行。例如: gcc -pg -o test test.c 2. 执行你的应用程序使之生成供gprof 分析的数据,运行刚才的程序: &nbs.........【阅读全文】
发布时间:2013-04-24 14:53:01
1 In most cases the stride is the same as the width. The stride is useful if you are trying to copy/draw a sub-region of a Bitmap. For instance, if you have a 100x100 bitmap and you want to draw the 50x50 top-right corner, you can use a width of 50px and a stride of 100px.2 Stride i.........【阅读全文】
发布时间:2013-04-23 11:26:19
http://www.taobaotesting.com/blogs/qa?bid=8592Coverage validator1. 简介2. 原理简介3. 使用4. 优缺点 1. Coverage validator简介Coverage validator(Software Verification Limited公司的产品)是一个代码覆盖测试工具。可供软.........【阅读全文】
发布时间:2013-04-23 11:25:30
http://www.taobaotesting.com/blogs/qa?bid=84511、背景介绍GCOV是一个GNU的本地覆盖测试工具, 伴随GCC发布,配合GCC共同实现对C或者C++文件的语句覆盖和分支覆盖测试。是一个命令行方式的控制台程序。需要工具链的支持。LCOV由 IBM 开发,由 Linux Test Project 维护的开放源代码工具。是GCOV结果展现的一.........【阅读全文】