ubuntu 12.04 交叉编译 arm/mips 平台的 strace
生活随笔
收集整理的這篇文章主要介紹了
ubuntu 12.04 交叉编译 arm/mips 平台的 strace
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
為了定位段錯誤問題,需要移植strace到嵌入式平臺上。從git hub上拉取代碼下來編譯運行,實測可用
編譯步驟包括如下幾個步驟
1.?下載源代碼
2.?編譯
//下載源代碼 1. mkdir strace && cd strace 2. git init 3. git clone https://github.com/strace/strace.git3. cd strace && ./bootstrap 如果出現如下錯誤: m4/ax_valgrind_check.m4:106: warning: macro `AM_EXTRA_RECURSIVE_TARGETS' not found in library m4/ax_valgrind_check.m4:145: warning: macro `AM_EXTRA_RECURSIVE_TARGETS' not found in library configure:16784: error: possibly undefined macro: AM_EXTRA_RECURSIVE_TARGETSIf this token and others are legitimate, please use m4_pattern_allow.See the Autoconf documentation. autoreconf: /usr/bin/autoconf failed with exit status: 1解決方法是升級autoconf:wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gztar xf automake*cd automake-1.15sh configure --prefix /usr/localmake install4. 創建Makefile(如果是MIPS,工具鏈替換成mips對應的就好了) STRIP=arm-linux-gnueabihf-strip CC=arm-linux-gnueabihf-gcc LD=arm-linux-gnueabihf-ld RANLIB=arm-linux-gnueabihf-ranlib ./configure --host=arm-linux --target=arm-linux --enable-mpers=no5. 編譯 make?
總結
以上是生活随笔為你收集整理的ubuntu 12.04 交叉编译 arm/mips 平台的 strace的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 老主板怎么进入u盘 老电脑如何引导U盘
- 下一篇: ubuntu 创建github公钥