C++ lessons¶
(6 hours)
Prerequisites (Debian)¶
Boot into Debian and open a terminal
Type in the following commands (one by one) and install everything
sudo apt update
sudo apt install git
sudo apt install build-essential
sudo apt install cmake
sudo apt install clang-17
sudo apt install lldb
sudo apt updatewill update the repository list on your computergitis gitbuild-essentialis a bundle of necessary packages for c++ likemakeandgcc, just to make sure you have themcmakeis our build system, will be covered in lessonclang-17is our compiler, will be covered in lessonlldbis debugger forclang, will be covered in lesson
Install VSCode on Debian if you do not have it, follow this guide
Install Clangd extension in VSCode
Install Clang-format extension in VSCode
Install CMake tools extension in VSCode