• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

CMakeLists.txtD22-Nov-2023161 1311

MakefileD22-Nov-2023398 1813

README.txtD22-Nov-2023784 1411

toy.cppD22-Nov-202339.4 KiB1,340861

README.txt

1//===----------------------------------------------------------------------===/
2//                 Kaleidoscope with Orc - Initial Version
3//===----------------------------------------------------------------------===//
4
5This version of Kaleidoscope with Orc demonstrates fully eager compilation. When
6a function definition or top-level expression is entered it is immediately
7translated (IRGen'd) to LLVM IR and added to the JIT, where it is code-gen'd to
8native code and either stored (for function definitions) or executed (for
9top-level expressions).
10
11This directory contain a Makefile that allow the code to be built in a
12standalone manner, independent of the larger LLVM build infrastructure. To build
13the program you will need to have 'clang++' and 'llvm-config' in your path.
14