Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 469 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 469 Bytes

Silicium Compiler

Silicium Compiler (SiC) is a personal compiler project.

Dependencies

Sic is written in C++, you will need :

  • CMake 3.10
  • Flex
  • Bison
  • LLVM

Tip

On MacOS you may need to brew link llvm --force ans brew link bison --force

Build

cmake -S src -B build
make -C build

Run

./build/sic <file>

Test

Once you have built the project, you can run the tests with :

make -C build test