vs-code remote离线安装插件 lldb

  • Post author:
  • Post category:其他


找到vscode remote的server,像下面一样安装即可

/root/.vscode-server/bin/c3511e6c69bb39013c4a4b7b9566ec1ca73fc4d5/bin/code-server --install-extension /home/tikv/codelldb-x86_64-linux.vsix

code-server的路劲和我贴的不一样,需要自己找。


升级glibc很危险,如果失败,所有命令不可执行了。慎重。我是虚拟机,升级前做了个快照,失败就回退,宿主机不建议升级

lldb需要linux libc2.18+但是centos7默认是2.17

升级办法参考:

wget http://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.gz
tar -zxvf glibc-2.18.tar.gz 
cd glibc-2.18
mkdir build
cd build
../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
make -j4
make install

https://blog.csdn.net/penriver/article/details/124187427

安装rust-analyzer的时候,要求glibc 2.25以上,这个可以选择用rustup编译rust-analyzer以后替换扩展里的二进制。

$ rustup toolchain install nightly --component rust-analyzer-preview

Then set

rust-analyzer.server.path

to

~/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/rust-analyzer.

https://github.com/rust-lang/rust-analyzer/issues/11558

真想升级的话,参考https://blog.csdn.net/yutenys/article/details/122154162

可以升级成功



版权声明:本文为lizao2原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。