strace工具


1、strace工具

1.1、下载路径
https://github.com/strace/strace/tags

1.2、交叉编译

cd strace-4.15
mkdir strace_tool
./bootstrap
#CC=/new_home/mips-linux-gcc 设置交叉编译工具 #–host=mips-linux 设置主机类型,这个必须设置,否则会出现configure 错误 #–prefix=/new_home/dyh/strace-4.15/strace_tool 设置输出文件目录,需使用绝对路径
./configure CC=/new_home/mips-linux-gcc --host=mips-linux --prefix=/new_home/dyh/strace-4.15/strace_tool
make
make install

1.3、文件生成

cd ./strace_tool

1.4、strace详细使用
https://blog.51cto.com/u_10541556/1793898

上一篇:MIPS-底层内存管理与TLB


下一篇:MIPS体系结构学习笔记