Skip to content

Instantly share code, notes, and snippets.

@kenzo0107
Created October 11, 2020 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenzo0107/1ae95b1c17ce809274934e663b2f928b to your computer and use it in GitHub Desktop.
Save kenzo0107/1ae95b1c17ce809274934e663b2f928b to your computer and use it in GitHub Desktop.
Fix: "node: /usr/lib/arm-linux-gnueabihf/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by node)" on Raspberry PI
set -i -e "s|jessie|stretch|g" /etc/apt/sources.list
sudo apt-get update
sudo apt-get install gcc-6 g++-6
// link gcc 6
cd /usr/bin
$ sudo rm gcc g++
$ sudo ln -s gcc-6 gcc
$ sudo ln -s g++-6 g++
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment