• Home
  • History
  • Annotate
  • only in /external/llvm/examples/Kaleidoscope/MCJIT/initial/
NameDateSize

..06-Oct-20154 KiB

Makefile06-Oct-2015153

README.txt06-Oct-20151,019

toy.cpp06-Oct-201539.2 KiB

README.txt

1//===----------------------------------------------------------------------===/
2//                          Kaleidoscope with MCJIT
3//===----------------------------------------------------------------------===//
4
5The files in this directory are meant to accompany the first in a series of
6three blog posts that describe the process of porting the Kaleidoscope tutorial
7to use the MCJIT execution engine instead of the older JIT engine.
8
9When the blog post is ready this file will be updated with a link to the post.
10
11The source code in this directory demonstrates the initial working version of
12the program before subsequent performance improvements are applied.
13
14This directory contain a Makefile that allow the code to be built in a
15standalone manner, independent of the larger LLVM build infrastructure. To build
16the program you will need to have 'clang++' and 'llvm-config' in your path. If
17you attempt to build using the LLVM 3.3 release, some minor modifications will
18be required, as mentioned in the blog posts.