嵌入式中自己編譯gdb和gdbserver工具_第1頁
嵌入式中自己編譯gdb和gdbserver工具_第2頁
嵌入式中自己編譯gdb和gdbserver工具_第3頁
嵌入式中自己編譯gdb和gdbserver工具_第4頁
全文預覽已結束

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

1、嵌入式中自己編譯gdb 和 gdbserver工具目 錄一序論2 二開發(fā)環(huán)境說明2 三編譯gdb 和 gdbserver工具2 四 gdbserver操作使用5 一序論就目前而言, 嵌入式 linux 系統(tǒng)中, 主要有三種遠程調試方法,分別適用于不同場合的調試工作:用 rommonitor調試目標機程序、用 kgdb 調試系統(tǒng)內核用 gdbserver調試用戶空間程序。這三種調試方法的區(qū)別主要在于,目標機遠程調試stub 的存在形式的不同,而其設計思路和實現(xiàn)方法則是大致相同的。而我們最常用的是調試應用程序。就是采用gdb+gdbserver的方式進行調試。在很多情況下,用戶需要對一個應用程序進

2、行反復調試,特別是復雜的程序。采用gdb 方法調試,由于嵌入式系統(tǒng)資源有限性,一般不能直接在目標系統(tǒng)上進行調試,通常采用gdb+gdbserver的方式進行調試。gdbserver在目標系統(tǒng)中運行,gdb 則在宿主機上運行。目標系統(tǒng)必須包括gdbserver程序,宿主機也必須安裝gdb 程序。一般linux 發(fā)行版中都有一個可以運行的gdb ,但開發(fā)人員不能直接使用該發(fā)行版中的gdb 來做遠程調試,而要獲取gdb 的源代碼包,針對arm 平臺作一個簡單配置二開發(fā)環(huán)境說明嵌入式中自己編譯gdb 和 gdbserver工具,由自己親自編譯通過并可以正確運行使用。所在環(huán)境是 pc 運行在 red 9

3、.0. 硬件板子: at91rm9200,跑嵌入式linux-2.4.27.gcc為 3.3.2 , gdb 和gdbservr源代碼選用gdb- 5.2.1( 先后試過gdb6.0, gdb6.4, gdb6.6三個版本,這三個沒有成功,具體以后有時間再研究),可以到 /gnu/gdb下載。 . 三編譯gdb 和 gdbserver工具可以在根據(jù)下面一步一步做,也可以象我一樣,做一個 shell 腳本文件, 這樣可以提高效率(可以在 windows上先做好這個腳本,制作好后拷貝到pc 的 linux 下,可能不能執(zhí)行,要用:先執(zhí)行 dos2unix 腳本名將

4、dos 格式轉化成linux 認識的文件,然后再執(zhí)行chmod 777 腳本名。這樣就可以直接執(zhí)行這個腳本了)。操作具體情況請看腳本里的注釋,編譯中,源代碼中好像沒有出現(xiàn)語法錯誤提示,如果有的話,也就是添加或取消包含.h 文件。#!/bin/sh #編譯 gdb #download from http:/ # tar jxf gdb-5.2.1.tar.bz2 #文件的很多目錄也許你還沒有建立,跟我的電腦上不一致,則要自己建立起目錄。cd /usr/src/arm/gdb/gdb-5.2.1 mkdir ./build-gdb cd ./build-gdb ./gdb-5.2.1/config

5、ure -target=arm-linux -enable-shared -prefix=/usr/src/arm/gdb/build-gdb -without-x -disable-gdbtk -disable-tui -without-included-regex -without-included-gettext #具體說明請看相關附錄make make install #編譯 gdbserver gdb5.2.1版本mkdir ./build-gdbserver cd ./build-gdbserver chmod +x ./gdb-5.2.1/gdb/gdbserver/config

6、ure cc=/usr/local/arm/3.3.2/bin/arm-linux-gcc ./gdb-5.2.1/gdb/gdbserver/configure arm-linux -without-included-regex -without-included-gettext #具體說明請看相關附錄make cp -vf gdbreplay gdbserver /nfsshare/gdb 具體說明附錄:對應腳本里的兩行編譯配置:./gdb-5.2.1/configure -target=arm-linux -enable-shared -prefix=/usr/src/arm/gdb/b

7、uild-gdb -without-x -disable-gdbtk -disable-tui -without-included-regex -without-included-gettext 還有:cc=/usr/local/arm/3.3.2/bin/arm-linux-gcc ./gdb-5.2.1/gdb/gdbserver/configure arm-linux -without-included-regex -without-included-gettext 上面兩個配置,在我電腦如果書寫成用隔開的幾行,這樣不能運行,不知道為什么。我一直還沒有搞明白,不過這是小問題。上面的配置一

8、定要加對,否則編譯有問題,或者編譯好后,使用時有問題,如運行不起來,或者運行時不能設置斷點,只能全速跑。整個編譯過程如果碰到這些問題:1編譯后,在板子上運行gdbserver后出現(xiàn)rootat91rm9200dk /usr$gdbserver: error in loading shared libraries: libthread _db.so.1: cannot open shared object file: no such file or directory 出現(xiàn)這個問題,是跟上面的兩個配置有關,如只是簡單的配置了如網上流行的說法target host prefix ,沒有其他選項了。

9、這樣生成的gdbserver是要共享庫的,目標文件在使用時要求有l(wèi)ibthread_db.so.1共享庫文件,可以嘗試將 gcc3.3.2( 我自己使用的版本)交叉編譯器下的這個文件拷貝到你的板子linux 下的 /lib 或 /tm/lib, 或/usr/lib( 具體不是很明白,我試過拷貝在/lib) ,但是有這個文件后,會導致這個文件要調用libc.so.6這個文件,這個文件又需要libc-2.3.2.so ,這些文件更換后,最后更多文件依賴。原因是: 我的根文件下面ramdisk 解開后庫文件的版本低,好像全是1.3.2 版本的(在家沒帶板子),就是說libc-2.3.2.so , l

10、d-2.3.2.so ,還很多別的庫文件都是 1.0 版本的。其實這些庫只是版本低,在原來的ramdisk 里都有,但是提示找不到。你上一步我也是跟綜過的。然而我用新的如gcc 3.3.2或 3.4.1 里面的庫換掉后換掉后,如換成libc-2.3.2.so ,ld-2.3.2.so ,連根文件ramdisk啟動不來,也就是說要改動 init 部分,也就意外重新做busybox部分,那工作量更大,然而我也做了busybox ,發(fā)現(xiàn)新做的busybox做成 ramdisk后,內核起不來,處在init 過不去。所以如果文件版本不一致的話,busybox和 ramdisk 不是自己作的話,上面這種動

11、態(tài)編譯gdbserver然后再在板子上加共享庫,那是很難成功的。上面這個原因,我沒有搞定,如果有人知道原因,請?zhí)崾疚摇Vx謝!2為了解決問題,看了一篇老外的文章,說可以在編譯gdbserver時,改動gdbserver下面的makefie.in或 configure后的 makefile ,里面的ldflags改成ldflags= -static。原始老外文章:bgatmars build-gdb cd gdb/gdbserver bgatmars build-gdb make cc=arm-linux-gcc bgatmars build-gdb file gdbserver ./gdbser

12、ver: elf 32-bit lsb executable, arm, version 1 (arm), dynamically linked (uses shared libs), not stripped you probably dont want your gdbserver to use shared libraries, unless your target environment supports them (and you want to prove that they actually work!). to save some hair, youll probably wa

13、nt to build a statically-linked gdbserver instead, so that you can debug even if shared libraries are broken. to do that, edit the makefile in gdb/gdbserver, and modify ldflags: ldflags = -static there may be other ldflags flags already there, which youll want to leave alone- just add -static to the

14、 end of the list. in other cases, ldflags may not exist at all; just add the above line somewhere near cflags. then, rebuild gdbserver: bgatmars build-gdb make clean bgatmars build-gdb make cc=arm-linux-gcc bgatmars build-gdb file gdbserver gdbserver: elf 32-bit lsb executable, arm, version 1 (arm),

15、 statically linked, not stripped run arm-linux-strip on the executable, if you want to shrink it down: bgatmars build-gdb arm-linux-strip gdbserver bgatmars build-gdb ls -l gdbserver -rwxrwxr-x 1 bgat bgat 249164 aug 2 11:16 gdbserver 我這樣編譯gdbserver后, gdbserver終于可以運行了,但是讓我失望的是,gdbserver調試時程序不能設置斷點,跑

16、一次就完了。提示:warnning cannot insert breakpoint 1. error accessing memory address 0 x8. 上面這個原因,我沒有搞定,如果有人知道原因,請?zhí)崾疚?。謝謝!3嘗試了快1 個星期后,很多版本的gdb 嘗試過。最后就是使用了第三條說的方法編譯的,通過了, gdbserver可以跑了,可以設置斷點了,現(xiàn)在正常。四 gdbserver操作使用有關 gdb 和 gdbserver調試操作使用說明,資料一大把,這里講講要注意的地方:1在 target machine輸入gdbserver 7:2345 hello 7主機 ip,2345 任意寫一個。 hello 一定要用arm-linux-gcc(我的板子)交叉編譯,帶-g 編譯。2. 在 target machin出現(xiàn)process hello created; pid = 68 3. 進入上面制作gdb 時生成的arm -linux-gdb所在目錄 (也可以 export), 在 pc 機上輸入arm-linux-gdb hello (這個程序一定跟target machine程序保持一致,是交叉編譯的) (gdb) target remote 07:

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論