mirror of
https://github.com/oxen-io/oxen-core.git
synced 2023-12-14 02:22:56 +01:00
Disable broken intel-optimized build on i386
It doesn't compiler and I can't be arsed to fix it; if someone really needs 32-bit they probably don't care about performance of turtle hashing in oxend anyway, so the portable one is fine.
This commit is contained in:
parent
45e03a4575
commit
290984257f
2 changed files with 2 additions and 2 deletions
|
@ -191,9 +191,9 @@ extern int aesb_pseudo_round(const uint8_t *in, uint8_t *out, const uint8_t *exp
|
|||
} while (0)
|
||||
|
||||
|
||||
#if defined(__x86_64__) || defined(__i386__) || defined(_M_X86) || defined(_M_X64)
|
||||
#if defined(__x86_64__) || defined(_M_X64)
|
||||
|
||||
#include "cn_turtle_hash-intel.inl"
|
||||
#include "cn_turtle_hash-amd64.inl"
|
||||
|
||||
#elif defined(__arm__) || defined(__aarch64__) // ARCH arm
|
||||
|
||||
|
|
Loading…
Reference in a new issue