Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/janbaig/llvm-toy-compiler
- Owner: JanBaig
- Created: 2023-12-20T02:41:38.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-29T23:54:49.000Z (10 months ago)
- Last Synced: 2024-01-30T17:27:06.800Z (10 months ago)
- Topics: compiler-frontend, compilers, kaleidoscope, llvm
- Language: C++
- Homepage:
- Size: 1.77 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```