mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
bb3058119a
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
11 lines
657 B
Text
11 lines
657 B
Text
libcpuid is a small C library for x86 CPU detection and feature extraction.
|
|
Using it, you can:
|
|
|
|
* get the processor vendor, model, brand string, code name
|
|
* get information about CPU features such as: number of cores or logical CPUs, cache sizes, CPU clock
|
|
* check if the processor implements a specific instruction set such as the SSE2, 3DNow!
|
|
* execute the CPUID and RDTSC instructions (portably!)
|
|
* and have this all in your commercial application, without getting into trouble.
|
|
|
|
It works on Windows, Linux and Mac OS X, both 32-bit and 64-bit flavours. Compiler support
|
|
includes GCC and Microsoft Visual C++ (and compatible, e.g. Intel C++ compiler).
|