Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/janbaig/llvm-toy-compiler

Implementing a toy language frontend using LLVM
https://github.com/janbaig/llvm-toy-compiler

compiler-frontend compilers kaleidoscope llvm

Last synced: 3 days ago
JSON representation

Implementing a toy language frontend using LLVM

Awesome Lists containing this project

README

        

# LLVM-Learning

To compile
```bash
clang++ -g -O3 main.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core` -o main
```
To run
```
./main
```