当前位置:网站首页>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
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
边栏推荐
猜你喜欢
随机推荐
VCD-影音光碟
Leetcode - 226. Retourner l'arbre binaire (bfs)
JS cast
wechat_ Solve the problem of page Jump and parameter transfer by navigator in wechat applet
LeetCode——226. 翻轉二叉樹(BFS)
判断某个序列是否为栈的弹出序列
Detailed explanation of MySQL mvcc mechanism
数字签名论述及生成与优点分析
Map and filter methods for processing scarce arrays
[buuctf.reverse] 126-130
mysql Add column 失败 因为之前有数据,不是默认null 不行
Chen Qiang: Alibaba's 100 billion level large-scale digital business knowledge map helps business growth
Introduction to Ethereum Technology Architecture
分页查询、JOIN关联查询优化
Prometeus 2.34.0 new features
JS common regular expressions
Binary search-1
行锁与隔离级别案例分析
LeetCode——226. 翻转二叉树(BFS)
解决pycharm里面每个字母占一格空格的问题









