Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. wget http://ftp.gnu.org/gnu/gdb/gdb-7.8.tar.xz
  2. tar -xf gdb-7.8.tar.xz
  3. cd gdb-7.8/
  4. ./configure
  5. make
  6. sudo cp gdb/gdb /usr/local/bin/gdb
  7.  
  8. gdb --version
  9.  
  10. GNU gdb (GDB) 7.8
  11. Copyright (C) 2014 Free Software Foundation, Inc.
  12. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  13. This is free software: you are free to change and redistribute it.
  14. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  15. and "show warranty" for details.
  16. This GDB was configured as "i686-pc-linux-gnu".
  17. Type "show configuration" for configuration details.
  18. For bug reporting instructions, please see:
  19. <http://www.gnu.org/software/gdb/bugs/>.
  20. Find the GDB manual and other documentation resources online at:
  21. <http://www.gnu.org/software/gdb/documentation/>.
  22. For help, type "help".
  23. Type "apropos word" to search for commands related to "word".
  24.  
  25. sudo rm /usr/local/bin/gdb
  26.  
  27. sudo apt-get install texinfo
  28.  
  29. sudo apt-get update && sudo apt-get install checkinstall
  30.  
  31. wget http://ftp.gnu.org/gnu/gdb/gdb-7.8.tar.xz
  32. tar -xf gdb-7.8.tar.xz
  33. cd gdb-7.8/
  34. ./configure
  35. sudo checkinstall
  36.  
  37. sudo dpkg -r gdb
  38. sudo dpkg -i ~/gdb-7.8/gdb_7.8-1_amd64.deb
  39. sudo apt-get install -f
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement