From: alex Date: Fri, 13 Sep 2013 14:11:40 +0000 (+0400) Subject: Add ARM to architectures list X-Git-Tag: v0.4.4.5~10 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=83b83771a62d81e0d4d27d540d816a9e102ffa9f Add ARM to architectures list --- diff --git a/src/scrypt.cpp b/src/scrypt.cpp index c54202e..fe56d3c 100644 --- a/src/scrypt.cpp +++ b/src/scrypt.cpp @@ -38,7 +38,7 @@ #define SCRYPT_BUFFER_SIZE (131072 + 63) -#if defined (__x86_64__) || defined (__i386__) +#if defined (__x86_64__) || defined (__i386__) || defined(__arm__) extern "C" void scrypt_core(uint32_t *X, uint32_t *V); #else // TODO: Add cross-platform scrypt_core implementation