和菜鳥一起學linux之linux效能分析工具oprofile移植

東月之神發表於2013-11-07


一、核心編譯選項

make menuconfig

General setup--->
[*] Profiling support
<*> OProfile system profiling


二、popt移植

       下載原始碼:http://rpm5.org/files/popt/    popt-1.16.tar.gz

 

       解壓縮後,在popt-1.16當前目錄下,新建build.sh,編輯內容如下:

---------------------------------------分割線----------------------------------------------------

#!/bin/sh 
./configure  --host=arm-linux \ 
                 --prefix=/home/eastmoon/rootfs \
--target=arm-linux
 

---------------------------------------分割線----------------------------------------------------

設定下build.sh的許可權後,

./build.sh 配置好以後,

make下,

再make install就ok了。

然後可以看到在/home/eastmoon/rootfs中就會有相關的.so等庫了。


二、binutils移植

下載原始碼:http://ftp.gnu.org/gnu/binutils/   binutils-2.22.tar.gz

 

解壓縮後,在binutils-2.22當前目錄下,新建build.sh,編輯內容如下:

---------------------------------------分割線----------------------------------------------------

#!/bin/sh 
./configure  --host=arm-linux \ 
                 --with-kernel-support \
                 --prefix=/home/eastmoon/rootfs \
--target=arm-linux \
--disable-nls


---------------------------------------分割線----------------------------------------------------

設定下build.sh的許可權後,

./build.sh 配置好以後,

修改gas/Makefile,WARN_CFLAGS中去掉-Werror

因為有些機器是64位的,編譯的.a在oprofile中連結會有問題。所以,這時候

vim config.status

修改$[“CFLAGS”]=”-g–O2” 為 $[“CFLAGS”]=”-g–O2  -fPIC”.

 

接著

make下,

再make install就ok了。

然後可以看到在/home/eastmoon/rootfs中就會有相關的.so等庫了。

 


三、oprofile移植

下載原始碼:http://oprofile.sourceforge.net/download/    oprofile-0.9.9.tar.gz

 

解壓縮後,在oprofile-0.9.9當前目錄下,新建build.sh,編輯內容如下:

---------------------------------------分割線----------------------------------------------------

#!/bin/sh 
CFLGAS+=-I//home/eastmoon/rootfs/include \
CXXFLGAS+=-I//home/eastmoon/rootfs/include\
LDFLGAS+=-L//home/eastmoon/rootfs/lib \
./configure  --host=arm-linux \ 
                 --with-kernel-support \
                 --prefix=/home/eastmoon/rootfs \
--target=arm-linux \
 

---------------------------------------分割線----------------------------------------------------

設定下build.sh的許可權後,

./build.sh 配置好以後,

接著

make下,

再make install就ok了。

然後可以看到在/home/eastmoon/rootfs中就會有相關的應用程式了。

 

四、應用

編譯的時候有指定的OPROFILE_EVENTS_DIR的路徑。所以,在使用的時候

export  OPROFILE_EVENTS_DIR=’/home/oprofile’

 

       把/home/eastmoon/rootfs/share/oprofile下的檔案,拷貝到/home/oprofile下。

 

最後,就可以使用oprofile了

opcontrol –setup–no-vmlinux

        opcontrol –init

        opcontrol –start  //啟動

        opcontrol –dump  //採集

    opcontrol –stop   //停止

    opreport     //檢視

    opreport –l   //檢視,包括函式

具體的其他功能可以百度檢視,這裡只是移植和簡單的應用。

相關文章