From 3f64c042bd8b1530b769a8d69bd962b67991acd1 Mon Sep 17 00:00:00 2001 From: orignal Date: Mon, 29 May 2017 10:08:49 -0400 Subject: [PATCH] Fixed #880. Print if AESNI or AVX enabled --- daemon/Daemon.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/daemon/Daemon.cpp b/daemon/Daemon.cpp index 7b1cc361..a48bdd03 100644 --- a/daemon/Daemon.cpp +++ b/daemon/Daemon.cpp @@ -115,6 +115,12 @@ namespace i2p } LogPrint(eLogInfo, "i2pd v", VERSION, " starting"); +#ifdef AESNI + LogPrint(eLogInfo, "AESNI enabled"); +#endif +#if defined(__AVX__) + LogPrint(eLogInfo, "AVX enabled"); +#endif LogPrint(eLogDebug, "FS: main config file: ", config); LogPrint(eLogDebug, "FS: data directory: ", datadir);