1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-17 03:50:03 +02:00

src/main.cpp: consume "--threads" flag even if not supported (so we dont break scripts)

This commit is contained in:
Henrik Hautakoski 2020-01-16 16:36:59 +01:00
parent 368d2ad726
commit c416bbdad2

View file

@ -129,15 +129,20 @@ int main(int argc, char **argv) {
p++;
}
#ifdef HAVE_THREADS
if (p < argc && !memcmp(argv[p], "--threads=", 10)) {
#ifdef HAVE_THREADS
option_num_threads = atoi(argv[p] + 10);
if (option_num_threads < 2) {
option_num_threads = 2;
}
#else
// Even if we dont have threads. we consume the flag.
// otherwise we might break scripts. Print a nice message instead.
std::cerr << "NOTICE: eosio-keygen is not compiled with"
<< " thread support. this option is ignored." << std::endl;
#endif /* HAVE_THREADS */
p++;
}
#endif /* HAVE_THREADS */
if (argc <= p) {
std::cout << "You must specify a word list." << std::endl;