Linux
As Linux is essentially the dream programming environment, very little setup is needed for the Lab part of this course. Furthermore, with Linux users, we expect that some of the following steps are not necessary as the requirements are likely already satisfied on your system, so you may skip any steps at your discretion.
Step 1: Install VS Code
Download and install Visual Studio Code (VS Code) for Linux.
Step 2: Install the Required Packages
To work with the given assignment framework, you will need clang
, make
, cmake
and git
, along with other system-specific packages needed for address sanitization.
sudo apt update && sudo apt install -y cmake clang make llvm libclang-dev
Step 3: Set up SSH with GitHub
One of the easiest ways to access your GitHub account (and with that your private repository) is to set up a Secure Shell (SSH) key. Follow the GitHub SSH Setup Guide for this.
Last updated