当前位置:网站首页>GDB installation

GDB installation

2022-06-26 18:06:00 Upper moon screen

You can download the latest and compile it by yourself

wget http://ftp.gnu.org/gnu/gdb/gdb-7.5.tar.gz
tar xvfz gdb-7.5.tar.gz
cd gdb-7.5
./configure
make
cp gdb/gdb /usr/local/bin

Take care about that the /usr/local/bin is at the beginning of the PATH you are using while running QtCreator
You can place the following line into your .profile

export PATH=$PATH:/usr/local/bin
原网站

版权声明
本文为[Upper moon screen]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/177/202206261805334344.html