slow-hash: default to JIT on x86_64

This commit is contained in:
moneromooo-monero 2019-03-01 13:04:49 +00:00
parent f2f725d8db
commit efb2bdd309
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -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;