Added ARMv8 (aarch64) support.

This commit is contained in:
XMRig 2017-11-06 03:11:35 +03:00
parent 420fb88049
commit 368736dc28
11 changed files with 2188 additions and 60 deletions

View file

@ -23,10 +23,16 @@
#include <stdlib.h>
#include <mm_malloc.h>
#include <sys/mman.h>
#if defined(XMRIG_ARM) && !defined(__clang__)
# include "aligned_malloc.h"
#else
# include <mm_malloc.h>
#endif
#include "crypto/CryptoNight.h"
#include "log/Log.h"
#include "Mem.h"