移植strace調(diào)試工具到arm平臺
移植strace調(diào)試工具到arm平臺 由Linux系統(tǒng)中文網(wǎng)(Linux521.com)編輯收集整理,除Linux521注明原創(chuàng)文章外,其版權(quán)歸原作者所有。如果您在學(xué)習(xí)中遇到問題歡迎在下面的評論中留言,我們會盡全力解答您的問題。
本文引用地址:http://m.butianyuan.cn/article/201611/317670.htmstrace工具是一個非常強大的工具,是調(diào)試程序的好工具.要移植到arm平臺,就需要使用交叉編譯工具編譯生成靜態(tài)鏈接的可執(zhí)行文件.具體步驟如下:
1.下載 strace-4.5.16.tar.bz2;下載網(wǎng)址是:http://ncu.dl.sourceforge.net/project/strace/strace/4.5.16/strace-4.5.16.tar.bz2
2.解壓.對于ARM平臺,
打上一個補丁,
41 /*
1042 * We only need to grab the syscall number on syscall entry.
1043 */
1044 if (regs.ARM_ip == 0) {
1045 /*
1046 * Note: we only deal with only 32-bit CPUs here.
1047 */
1048 ****************************************************************
1049 if (!(tcp->flags & TCB_INSYSCALL) &&
1050 (tcp->flags & TCB_WAITEXECVE)) {
1051 /* caught a fake syscall from the execves exit */
1052 tcp->flags &= ~TCB_WAITEXECVE;
1053 return 0;
1054 }
1055 ****************************************************************
1056 if (regs.ARM_cpsr & 0x20) {
3.配置../configure --host=arm-linux CC=arm_v5t_le-gcc LD=arm_v5t_le-ld;
4.編譯.make CFLAGS ="-static",生成strace靜態(tài)可執(zhí)行文件,3M多;
5.strip.arm_v5t_le-stip strace,這樣可執(zhí)行文件就減小到756多K.
以上采用的是達芬奇平臺的arm工具;
評論