├── .gitignore ├── LICENSE ├── Makefile.vs2017 ├── README.md ├── clang └── README.md ├── fib.c ├── jit.cpp ├── jit.h ├── main.cpp ├── make.cmd └── predef.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.vs2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/Makefile.vs2017 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/README.md -------------------------------------------------------------------------------- /clang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/clang/README.md -------------------------------------------------------------------------------- /fib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/fib.c -------------------------------------------------------------------------------- /jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/jit.cpp -------------------------------------------------------------------------------- /jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/jit.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/main.cpp -------------------------------------------------------------------------------- /make.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | nmake -f Makefile.vs2017 %* 4 | -------------------------------------------------------------------------------- /predef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kray-G/clang-jit/HEAD/predef.cpp --------------------------------------------------------------------------------