1
0
mirror of https://github.com/xmrig/xmrig.git synced 2026-01-23 14:52:52 -05:00

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"