Created
October 11, 2020 14:12
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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