Browse Source

Fix compiling komodo_curve25519.h on ARMv8

getfilterednotes
Duke Leto 4 years ago
parent
commit
f3cc3b25df
  1. 2
      src/komodo_curve25519.h

2
src/komodo_curve25519.h

@ -81,7 +81,7 @@ bits320 fexpand(bits256 basepoint)
return(out);
}
#if __amd64__
#if defined(__amd64__) || defined(__aarch64)
// donna: special gcc mode for 128-bit integers. It's implemented on 64-bit platforms only as far as I know.
typedef unsigned uint128_t __attribute__((mode(TI)));

Loading…
Cancel
Save