Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 495 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 495 Bytes

matrix

The Matrix Programming Language

Build the compiler

First, create a new build directory and navigate to it:

mkdir build && cd build

Next, build the compiler:

cmake ..

&&

make

Common issues

In case any LLVM libs are not found, run this command:

llvm-config --libs

Edit 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.