diff options
Diffstat (limited to 'examples/Kaleidoscope/MCJIT/initial/Makefile')
-rw-r--r-- | examples/Kaleidoscope/MCJIT/initial/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/Kaleidoscope/MCJIT/initial/Makefile b/examples/Kaleidoscope/MCJIT/initial/Makefile new file mode 100644 index 0000000..2989832 --- /dev/null +++ b/examples/Kaleidoscope/MCJIT/initial/Makefile @@ -0,0 +1,4 @@ +all: toy-mcjit + +toy-mcjit : toy.cpp + clang++ toy.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core mcjit native` -o toy-mcjit |