diff options
author | Cristiano Urban <cristiano.urban.slack@gmail.com> | 2015-08-03 08:49:44 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-08-03 08:49:44 +0700 |
commit | bb3058119ae9d36c681e530e1d6ec0be3f36d7e0 (patch) | |
tree | 30ccf17c81a5414d50a24d5816b261f1b8434afb /libraries/libcpuid/README | |
parent | 1243e3c9187c9ef8d3a34d4b4b529b6431508ad1 (diff) |
libraries/libcpuid: Added (C library for x86 CPU detection).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libcpuid/README')
-rw-r--r-- | libraries/libcpuid/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libraries/libcpuid/README b/libraries/libcpuid/README new file mode 100644 index 000000000000..f78e3ce45c98 --- /dev/null +++ b/libraries/libcpuid/README @@ -0,0 +1,11 @@ +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). |