Added ARMv8 (aarch64) support.

This commit is contained in:
XMRig 2017-11-06 03:11:35 +03:00
parent d403dcf95c
commit 6cc152e26f
11 changed files with 2188 additions and 60 deletions

View file

@ -23,7 +23,13 @@
#include "crypto/CryptoNight.h"
#include "crypto/CryptoNight_p.h"
#if defined(__aarch64__)
# include "crypto/CryptoNight_arm64.h"
#else
# include "crypto/CryptoNight_x86.h"
#endif
#include "crypto/CryptoNight_test.h"
#include "net/Job.h"
#include "net/JobResult.h"