README revision 1.1.1.1
1
2                     SLJIT - Stack Less JIT Compiler
3
4Purpose:
5  A simple machine independent JIT, which suitable for interpreters and
6  other dynamic tools. See sljitLir.h for more information.
7
8Compatible:
9  Any C (C++) compiler. At least I hope so.
10
11Using sljit:
12  Copy sljitLir.c sljitLir.h sljitConfig.h sljitExecAllocator.c and sljitNative*.c
13  files into your project. Add sljitLir.c into your project. The other files are
14  included by sljitLir.c (when required). Define the machine by SLJIT_CONFIG_*
15  selector. See sljitConfig.h for all possible values. For C++ compilers, rename
16  sljitLir.c to sljitLir.cpp.
17
18More info:
19  http://sljit.sourceforge.net/
20
21Contact:
22  hzmester@freemail.hu
23