[ABI] Build improvements - replaced ASMJIT_BUIlD_X86 with ASMJIT_NO_X86 and other changes...

This commit is contained in:
kobalicek
2021-03-21 13:50:25 +01:00
parent e7a728018e
commit a4dd0b2d8b
36 changed files with 161 additions and 174 deletions

View File

@@ -30,7 +30,7 @@
using namespace asmjit;
#if defined(ASMJIT_BUILD_X86)
#if !defined(ASMJIT_NO_X86)
void benchmarkX86Emitters(uint32_t numIterations, bool testX86, bool testX64) noexcept;
#endif
@@ -57,7 +57,7 @@ int main(int argc, char* argv[]) {
const char* arch = cmdLine.valueOf("--arch", "all");
#if defined(ASMJIT_BUILD_X86)
#if !defined(ASMJIT_NO_X86)
bool testX86 = strcmp(arch, "all") == 0 || strcmp(arch, "x86") == 0;
bool testX64 = strcmp(arch, "all") == 0 || strcmp(arch, "x64") == 0;