Linux下离线安装gdb调试环境

Windows与Linux共享文件

putty有自带的工具psftp.exe

  1. 在Windows cmd下执行
    psftp linux用户名@Linux_IP
  2. 采用 put方法
    put test.txt

如下所示:
Linux下离线安装gdb调试环境_第1张图片

编译Vim8.0源代码

下载 Vim8.0

编译

//解压缩
tar jxf vim-8.0.tar.bz2

//切换目录
cd /vim80/src

//配置
./configure

注意:在配置过程(检查依赖关系)可能会碰到下面的问题:

no terminal library found
checking for tgetent()… configure: error: NOT FOUND!
      You need to install a terminal library; for example ncurses.
      Or specify the name of the library withwith-tlib.
ncurses是一个比较老的库

解决方法:sudo apt install libncurses5-dev

//编译
make
//安装
make install

安装ncurses-5.6.tar.gz

下载 ncurses-5.6.tar.gz

//解压文件
tar zxvf ncurses-5.6.tar.gz
//配置
./configure --prefix=/usr/local --with-shared --without-debug  
//编译
make
//安装
sudo make install

参考

Linux下编译安装Vim8.0

GDB调试程序

用GDB调试程序(一)

你可能感兴趣的:(gdb,linux)