From e05bb196f042b60740e1e966de45b8b3e7f59c20 Mon Sep 17 00:00:00 2001 From: Quantum Date: Mon, 30 Aug 2021 21:52:23 -0400 Subject: [PATCH] [host] app: print CPU information on startup --- host/src/app.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/src/app.c b/host/src/app.c index 1232b4d6..448acd8b 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -32,6 +32,7 @@ #include "common/sysinfo.h" #include "common/time.h" #include "common/stringutils.h" +#include "common/cpuinfo.h" #include @@ -539,6 +540,7 @@ int app_main(int argc, char * argv[]) return LG_HOST_EXIT_FATAL; DEBUG_INFO("Looking Glass Host (%s)", BUILD_VERSION); + lgDebugCPU(); struct IVSHMEM shmDev = { 0 }; if (!ivshmemInit(&shmDev))