The base cmake setup for VCalc assignment.
Author: Braedy Kuzma (braedy@ualberta.ca)
Updated by: Deric Cheung (dacheung@ualberta.ca)
Updated by: Quinn Pham (qpham@ualberta.ca)
In this assignment and your final project you will be working with MLIR and LLVM. Due to the complex nature (and size) of the project we did not want to include MLIR as a subproject. Therefore, there is some additional setup required to get your build up and running.
You won't be building MLIR on the university machines: AICT wouldn't be very happy with you. Instead, we are providing a RELEASE build available for everyone.
cmake <path-to-VCalc-Base>
.make
.If there are updates to your assignment you can retrieve them using the instructions here.
git remote add upstream <clone-link>
.git fetch upstream
git merge <local branch> upstream/<upstream branch>
. Usually both
branches are master
.Once the remote has been added, future updates are simply the fetch
and
merge
steps.