https://github.com/spektom/llvm-playground
Playing with LLVM for the purpose of building JIT compiler
https://github.com/spektom/llvm-playground
Last synced: 3 months ago
JSON representation
Playing with LLVM for the purpose of building JIT compiler
- Host: GitHub
- URL: https://github.com/spektom/llvm-playground
- Owner: spektom
- License: apache-2.0
- Created: 2019-05-10T06:23:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-18T11:29:33.000Z (almost 6 years ago)
- Last Synced: 2025-01-20T16:53:28.516Z (4 months ago)
- Language: C++
- Homepage:
- Size: 62.5 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
llvm-playground
================Playing with LLVM for the purpose of building compile-time optimized Jit.
## Prerequisites
* LLVM 8
* CMake 3.12+
* GCC 8+ or Clang 8+
* Glog 0.4+## Compiling
mkdir build
CXX=/usr/local/opt/llvm/bin/clang++ cmake ..
make VERBOSE=1