mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
13f8153636
"cpuid" dumps results from the x86 CPUID instruction, and decodes information from certain leaves. NOTE: the code in this software to bind to a specific CPU is non functional on OpenBSD; if you are trying to find information from different cores, you'll need to run it multiple times until the process is scheduled on the core of interest.
26 lines
422 B
Makefile
26 lines
422 B
Makefile
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
COMMENT= dump and decode x86 CPUID information
|
|
|
|
GH_ACCOUNT= tycho
|
|
GH_PROJECT= cpuid
|
|
GH_TAGNAME= 1.8.3
|
|
PKGNAME= cpuid-tycho-${GH_TAGNAME}
|
|
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MODULES= devel/meson
|
|
NO_TEST= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/cpuid ${PREFIX}/bin/cpuid-tycho
|
|
|
|
.include <bsd.port.mk>
|