1163953Srrs//===----------------------------------------------------------------------===/
2169382Srrs//                          Kaleidoscope with MCJIT
3163953Srrs//===----------------------------------------------------------------------===//
4163953Srrs
5163953SrrsThe files in this directory are meant to accompany the first blog in a series of
6163953Srrsthree blog posts that describe the process of porting the Kaleidoscope tutorial
7163953Srrsto use the MCJIT execution engine instead of the older JIT engine.
8163953Srrs
9163953SrrsThe link of blog post-
10163953Srrshttps://blog.llvm.org/posts/2013-07-22-using-mcjit-with-kaleidoscope-tutorial/
11163953Srrs
12163953SrrsThe source code in this directory demonstrates the initial working version of
13163953Srrsthe program before subsequent performance improvements are applied.
14163953Srrs
15163953SrrsTo build the program you will need to have 'clang++' and 'llvm-config' in your 
16163953Srrspath. If you attempt to build using the LLVM 3.3 release, some minor 
17163953Srrsmodifications will be required, as mentioned in the blog posts.
18163953Srrs