Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
student:stu:gdb [2022/09/28 11:14] – [GDB + VS Code configuration] Add more details lam2mostudent:stu:gdb [2023/09/29 15:11] (current) – Remove outdated GDB fix section lam2mo
Line 1: Line 1:
 ====== GDB on stu ====== ====== GDB on stu ======
- 
-===== Version issue ===== 
- 
-Unfortunately, the default version of GDB on stu (9.2) has a bug that causes it to stop at an incorrect location at the beginning of functions, before function parameters are fully initialized. 
- 
-To gain access to a newer, [[https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=ac4a4f1cd7dceeeb17d0b8c077c874f2247acbf0|fixed]] version of GDB (10.0) for your account, please run the following command verbatim while logged into stu: 
- 
-  echo "export PATH=/opt/gdb/bin:$PATH" >>$HOME/.bashrc 
-   
-**PLEASE COPY AND PASTE THE COMMAND -- DO NOT ATTEMPT TO RE-TYPE IT!!** Every character must be exactly correct for it to work. You will need to log out and back in to get the correct version of GDB. You will know it is working by looking at the version number at the top of the text printed by GDB; it should start with "10.0" not "9.2". 
- 
-If you are in CS 261, you should use this command instead, because it will fix GDB and go ahead and set up a few other things we'll need later in the semester as well: 
- 
-  echo "source /cs/students/cs261/f22/bashrc" >>$HOME/.bashrc 
  
 ===== GDB + VS Code configuration ===== ===== GDB + VS Code configuration =====