add support for JIT compilation

This commit is contained in:
Axel Kohlmeyer
2022-12-22 22:50:01 -05:00
parent ca27fb3a98
commit e59f99b440
149 changed files with 81486 additions and 2 deletions

View File

@ -0,0 +1,17 @@
// This file is part of AsmJit project <https://asmjit.com>
//
// See asmjit.h or LICENSE.md for license and copyright information
// SPDX-License-Identifier: Zlib
#ifdef _WIN32
#pragma push_macro("min")
#pragma push_macro("max")
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
#endif