Fixed compilation for ARM

This commit is contained in:
SChernykh
2021-04-03 17:50:52 +02:00
parent 28b9f07a3c
commit 0b8f89890c
3 changed files with 3 additions and 3 deletions

View File

@@ -107,7 +107,7 @@ namespace randomx {
#define RANDOMX_HAVE_COMPILER 1
class JitCompilerX86;
using JitCompiler = JitCompilerX86;
#elif defined(XMRIG_FEATURE_ASM) && defined(__aarch64__)
#elif defined(__aarch64__)
#define RANDOMX_HAVE_COMPILER 1
class JitCompilerA64;
using JitCompiler = JitCompilerA64;