The Matrix Programming Language
First, create a new build directory and navigate to it:
mkdir build && cd buildNext, build the compiler:
cmake ..&&
makeIn case any LLVM libs are not found, run this command:
llvm-config --libsEdit llvm_libs variables in the CMakeLists.txt llvm_map_components_to_libnames field to whatever the result of the above command is, then omit the -lLLVM part.