mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-17 00:07:44 +00:00
Fixed compilation error
This commit is contained in:
parent
ceaebfd877
commit
a903d0a5bd
1 changed files with 5 additions and 1 deletions
|
@ -53,8 +53,12 @@
|
|||
#include <hwloc.h>
|
||||
#endif
|
||||
|
||||
#ifdef XMRIG_ARM
|
||||
#if defined(XMRIG_ARM)
|
||||
# include "crypto/cn/sse2neon.h"
|
||||
#elif defined(__GNUC__)
|
||||
# include <x86intrin.h>
|
||||
#else
|
||||
# include <intrin.h>
|
||||
#endif
|
||||
|
||||
#define CORE_HASH(i, x) static void h##i(const uint8_t* data, size_t size, uint8_t* output) \
|
||||
|
|
Loading…
Reference in a new issue