How to get Processor related details for ex Processor Core, Level and Arch.
Unsolved
General and Desktop
-
Hi Friends,
In one of my QT application I need to get some details like (Processor Core, Processor Level and Processor Architecture).
QSysInfo class does not provide these details, it just provide CpuArch as x86_64.I need to get these details in same way we can get in C++ by using SYSTEM_INFO and SYSTEM_LOGICAL_PROCESSOR_INFORMATION.
Your suggestions are highly appreciated.
Thanks,
MChauhan -
Maybe you should write by your self, on Linux read
/proc/cpuinfo
, or call sysconf() fromunistd.h
, on Windows you can call Windows API to get CPU information. -
HI
there is
http://doc.qt.io/qt-5/qsysinfo.html#detailsbut might not give you all you want :9