diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-01 13:04:49 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-21 11:29:08 +0000 |
commit | efb2bdd309041d734ce886cb2b819dbb77a10987 (patch) | |
tree | 33edad8f0bcfa6ce9148d96482c11f262f745462 /src/crypto/slow-hash.c | |
parent | Merge pull request #5201 (diff) | |
download | monero-efb2bdd309041d734ce886cb2b819dbb77a10987.tar.xz |
slow-hash: default to JIT on x86_64
Diffstat (limited to 'src/crypto/slow-hash.c')
-rw-r--r-- | src/crypto/slow-hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 9dc6f5038..449cd7a38 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -76,7 +76,7 @@ static inline int use_v4_jit(void) const char *env = getenv("MONERO_USE_CNV4_JIT"); if (!env) { - use_v4_jit_flag = 0; + use_v4_jit_flag = 1; } else if (!strcmp(env, "0") || !strcmp(env, "no")) { use_v4_jit_flag = 0; |