当前位置:网站首页>gdb安装

gdb安装

2022-06-26 18:05:00 月上纱窗

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
原网站

版权声明
本文为[月上纱窗]所创,转载请带上原文链接,感谢
https://blog.csdn.net/u014037733/article/details/23536157