在线笔记
全部博文(596)
发布时间:2013-05-15 20:09:10
1)安装oprofile依赖库:popt,bfd,liberty#./configure --with-kernel=/usr/src/linux/ --with-kernel-support#make#make DESTDIR=`pwd`/_install install如果不能编译,替换掉系统的库文件Warning: QT version 3 was requested but not found. No GUI will be built.Warning: The user account 'oprofile:oprof.........【阅读全文】
发布时间:2013-05-12 16:18:31
CFLAGS="-fprofile-arcs -ftest-coverage"LIBS="-lgcov"1。GCOV(1) 编译 CFLAGS CXXFLAGS LDFLAGS += "-fprofile-arcs -ftest-coverage -g -O0 -fPIC" gcc -fprofile-arcs -ftest-coverage -g -O0 -o test test.c 生成.gcno文件(gcov note文件) 备注:gcc -c.........【阅读全文】
发布时间:2013-05-02 22:39:40
本文介绍在Wireshark网络协议分析仪中如果解密SSL和TLS流量要求以下基本知识:? 网络追踪? 网络,TCP/IP和SSL/TLS协议? 证书和公私钥的使用? Wireshark网络协议分析仪Wireshark 软件支持SSL解密服务器或设备的私钥,私钥格式为PKCS#8 PEM.........【阅读全文】
发布时间:2013-04-28 12:39:59
cpu profile依赖文件:1)perl5,2)dot,Graphviz - Graph Visualization Software, http://www.graphviz.org/ 没有moc-qt4, ln -s /usr/bin/moc /usr/bin/moc-qt43)xaw3d,下载,解压$cd /xc/lib/Xaw3d$vi Imakefile ,删掉XCOMM EXTRA_INCLUDES = -I.$sudo ln -s /xc/lib/Xaw3d /us.........【阅读全文】
发布时间:2013-04-26 11:30:34
gprof的基本用法:1. 使用 -pg 选项编译和链接你的应用程序 ,在gcc编译程序的时候,加上-pg选项,如果是大项目,就在makefile里面修改编译选项,-pg放在那里都行。例如: gcc -pg -o test test.c 2. 执行你的应用程序使之生成供gprof 分析的数据,运行刚才的程序: &nbs.........【阅读全文】