0

This error comes while i open nvim

I copied config from my old pc and pasted to new pc, the same config worked in other pc

nvim-treesitter[rust]: Error during compilation /usr/bin/ld: cannot find -lstdc++

lcheylus
  • 1,217
  • 8
  • 21
Gowtham V
  • 67
  • 1
  • 2
  • 7

1 Answers1

0

You need to install GNU Standard C++ Library (libstdc++).

You didn't mention your Linux distribution but on a Debian one, you can install the libstdc++ with command sudo apt install libstdc++6

lcheylus
  • 1,217
  • 8
  • 21