1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2024-11-10 22:59:13 +00:00
a small C library for x86 CPU detection and feature extraction
Find a file
2022-10-25 22:53:16 +02:00
.github/workflows CI: update actions to Node16 2022-10-23 17:26:13 +02:00
cmake Add CMake 2020-02-06 10:32:25 +02:00
contrib/MSR Driver Remove all trailling spaces 2020-05-09 17:34:07 +02:00
cpuid_tool Do not print the same message twice when reading a raw CPUID dump 2022-09-23 18:44:11 +02:00
libcpuid DB: add Intel Penryn L 2022-10-25 22:53:16 +02:00
tests DB: add Intel Penryn L 2022-10-25 22:53:16 +02:00
.gitignore Support for hybrid CPU (#166) 2022-09-15 18:37:08 +02:00
AUTHORS Moving the repository one level deeper 2008-11-06 18:17:20 +00:00
bump_version.sh CMake: create shared libraries with correct SO name 2022-10-22 21:16:44 +02:00
ChangeLog Release version 0.6.1 2022-10-23 16:51:00 +02:00
cmake-format.py Add config file for cmake-format 2020-05-21 18:42:42 +02:00
CMakeLists.txt Release version 0.6.1 2022-10-23 16:51:00 +02:00
configure.ac Release version 0.6.1 2022-10-23 16:51:00 +02:00
COPYING Moving the repository one level deeper 2008-11-06 18:17:20 +00:00
libcpuid.dsw Remove all trailling spaces 2020-05-09 17:34:07 +02:00
libcpuid.pc.in Incorrect path in .pc file - fixed; Clarified documentation a bit 2008-11-28 16:17:29 +00:00
libcpuid_vc10.sln Remove all trailling spaces 2020-05-09 17:34:07 +02:00
libcpuid_vc71.sln Remove all trailling spaces 2020-05-09 17:34:07 +02:00
Makefile.am Support for hybrid CPU (#166) 2022-09-15 18:37:08 +02:00
NEWS Moving the repository one level deeper 2008-11-06 18:17:20 +00:00
README Convert README to markdown. 2015-11-04 01:31:23 +02:00
Readme.md Support for hybrid CPU (#166) 2022-09-15 18:37:08 +02:00

libcpuid

libcpuid provides CPU identification for the x86 (and x86_64). For details about the programming API, you might want to take a look at the project's website on sourceforge (http://libcpuid.sourceforge.net/). There you'd find a short tutorial, as well as the full API reference.

Configuring after checkout

Under Linux, where you download the sources, there's no configure script to run. This is because it isn't a good practice to keep such scripts in a source control system. To create it, you need to run the following commands once, after you checkout the libcpuid sources from github:

    1. run "libtoolize"
    2. run "autoreconf --install"

You need to have autoconf, automake and libtool installed.

After that you can run ./configure and make - this will build the library.

make dist will create a tarball (with "configure" inside) with the sources.

Prerequisites

Using libcpuid requires no dependencies on any of the supported OSes. Building it requires the aforementioned libtool and autotools commands to be available, which is a matter of installing a few common packages with related names (e.g. automake, autoconf, libtool). It also requires a POSIX-compatible shell. On NetBSD, you may need to install one (credits to @brucelilly):

  1. Install a POSIX-compatible shell such as ksh93 (pkg_add ast-ksh || pkgin in ast-ksh)
  2. export CONFIG_SHELL=/usr/pkg/bin/ksh93 (substitute the correct path if required)
  3. Follow the regular Linux instructions

Testing

After any change to the detection routines or match tables, it's always a good idea to run make test. If some test fails, and you're confident that the test is wrong and needs fixing, run make fix-tests.

You can also add a new test (which is basically a file containing the raw CPUID data and the expected decoded items) by using tests/create_test.py. The workflow there is as follows:

  1. Run "cpuid_tool" with no arguments. It will tell you that it has written a pair of files, raw.txt and report.txt. Ensure that report.txt contains meaningful data.
  2. Run "tests/create_test.py raw.txt report.txt > «my-cpu».test"
  3. Use a proper descriptive name for the test (look into tests/amd and tests/intel to get an idea) and copy your test file to an appropriate place within the tests directory hierarchy.

AIDA64 CPUID dumps (mostly found on InstLatx64) are also supported. To create a new test based on a AIDA64 CPUID dump, you can do:

cpuid_tool --load=aida64_raw.txt --outfile=report.txt --report
./tests/create_test.py aida64_raw.txt report.txt > tests/xxx/yyy/my-cpu.test

For non-developers, who still want to contribute tests for the project, use this page to report misdetections or new CPUs that libcpuid doesn't handle well yet.

Users

So far, I'm aware of the following projects which utilize libcpuid (listed alphabetically):

We'd love to hear from you if you are also using libcpuid and want your project listed above.

Downloads

You can find latest versioned archives here, with binaries for macOS and Windows.

Binary packages

Also, libcpuid is available for following systems in official repositories:

Build tool

  • Vcpkg: vcpkg install cpuid