Skip to content

Instantly share code, notes, and snippets.

View y9luiz's full-sized avatar

Luiz Felipe y9luiz

  • Atlantic Institute
  • Brasil - RN - Natal
View GitHub Profile
@sol-prog
sol-prog / commands.sh
Last active March 20, 2024 14:32
Install GCC 9 on Raspberry Pi and build C++17 programs
# Commands used in the video https://youtu.be/-bCG87jBDqA :
sudo apt update && sudo apt upgrade -y
git clone https://bitbucket.org/sol_prog/raspberry-pi-gcc-binary.git
cd raspberry-pi-gcc-binary
tar -xjvf gcc-9.1.0-armhf-raspbian.tar.bz2
sudo mv gcc-9.1.0 /opt
cd ..
rm -rf raspberry-pi-gcc-binary