123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- #ifndef _SLJIT_CONFIG_H_
- #define _SLJIT_CONFIG_H_
- #ifndef SLJIT_UTIL_GLOBAL_LOCK
- #define SLJIT_UTIL_GLOBAL_LOCK 1
- #endif
- #ifndef SLJIT_UTIL_STACK
- #define SLJIT_UTIL_STACK 1
- #endif
- #ifndef SLJIT_SINGLE_THREADED
- #define SLJIT_SINGLE_THREADED 0
- #endif
- #ifndef SLJIT_STD_MACROS_DEFINED
- #define SLJIT_STD_MACROS_DEFINED 0
- #endif
- #ifndef SLJIT_EXECUTABLE_ALLOCATOR
- #define SLJIT_EXECUTABLE_ALLOCATOR 1
- #ifndef SLJIT_PROT_EXECUTABLE_ALLOCATOR
- #define SLJIT_PROT_EXECUTABLE_ALLOCATOR 0
- #endif
- #endif
- #ifndef SLJIT_USE_CDECL_CALLING_CONVENTION
- #define SLJIT_USE_CDECL_CALLING_CONVENTION 0
- #endif
- #ifndef SLJIT_ARGUMENT_CHECKS
- #define SLJIT_ARGUMENT_CHECKS 0
- #endif
- #ifndef SLJIT_DEBUG
- #define SLJIT_DEBUG 1
- #endif
- #ifndef SLJIT_VERBOSE
- #define SLJIT_VERBOSE 1
- #endif
- #endif
|