60eb2cec80
Processor Counter Monitor (PCM) is an application programming interface (API) and a set of tools based on the API to monitor performance and energy metrics of Intel(R) Core(TM), Xeon(R), Atom(TM) and Xeon Phi(TM) processors. This package contains a patch on the pmu-query.py script to look for the pcm-core program at the default path. It's not nice to have a Buildroot specific patch but let's use one while we look for a solution that is acceptable upstream. Signed-off-by: Carlos Santos <casantos@datacom.ind.br> [Peter: Needs C++, force X86_MSR on in linux] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
976 B
Plaintext
34 lines
976 B
Plaintext
comment "pcm-tools needs a toolchain w/ C++"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
|
config BR2_PACKAGE_PCM_TOOLS
|
|
bool "pcm-tools"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_HWDATA
|
|
select BR2_PACKAGE_HWDATA_PCI_IDS
|
|
help
|
|
Processor Counter Monitor (PCM) is an application programming
|
|
interface (API) and a set of tools based on the API to monitor
|
|
performance and energy metrics of Intel(R) Core(TM), Xeon(R),
|
|
Atom(TM) and Xeon Phi(TM) processors.
|
|
|
|
https://github.com/opcm/pcm
|
|
|
|
if BR2_PACKAGE_PCM_TOOLS
|
|
|
|
# The pmu-query script is not compatible with Python 3
|
|
config BR2_PACKAGE_PCM_TOOLS_PMU_QUERY
|
|
bool "install the pmu-query script"
|
|
default y
|
|
depends on BR2_PACKAGE_PYTHON
|
|
select BR2_PACKAGE_CA_CERTIFICATES # https
|
|
select BR2_PACKAGE_PYTHON_HASHLIB # urllib2
|
|
select BR2_PACKAGE_PYTHON_SSL # urllib2
|
|
|
|
comment "pmu-query needs Python 2.x"
|
|
depends on !BR2_PACKAGE_PYTHON
|
|
|
|
endif
|