Notes on CSIL

Based on the current configuration of CSIL, there are a handful of extra steps and workarounds that you may want to use in order to complete the course projects.

Adding Recent LLVM Versions to Your Path

The version of LLVM installed in the lab is not the one we will use for the course. To make sure that you are using the correct version of LLVM, you should create the file .bash_profile in your home directory containing the following:

~/.bash_profile
export PATH=/usr/shared/CMPT/faculty/wsumner/llvm/bin:$PATH

If you then log out and log in, the correct versions of LLVM and clang will be used by default.