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,14 @@
// 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
#include "../core/api-build_p.h"
#include "../core/target.h"
ASMJIT_BEGIN_NAMESPACE
Target::Target() noexcept : _environment() {}
Target::~Target() noexcept {}
ASMJIT_END_NAMESPACE