1comment "pcm-tools needs a toolchain w/ C++" 2 depends on BR2_i386 || BR2_x86_64 3 depends on !BR2_INSTALL_LIBSTDCPP 4 5config BR2_PACKAGE_PCM_TOOLS 6 bool "pcm-tools" 7 depends on BR2_i386 || BR2_x86_64 8 depends on BR2_INSTALL_LIBSTDCPP 9 select BR2_PACKAGE_HWDATA 10 select BR2_PACKAGE_HWDATA_PCI_IDS 11 help 12 Processor Counter Monitor (PCM) is an application programming 13 interface (API) and a set of tools based on the API to monitor 14 performance and energy metrics of Intel(R) Core(TM), Xeon(R), 15 Atom(TM) and Xeon Phi(TM) processors. 16 17 https://github.com/opcm/pcm 18 19if BR2_PACKAGE_PCM_TOOLS 20 21# The pmu-query script is not compatible with Python 3 22config BR2_PACKAGE_PCM_TOOLS_PMU_QUERY 23 bool "install the pmu-query script" 24 default y 25 depends on BR2_PACKAGE_PYTHON 26 select BR2_PACKAGE_CA_CERTIFICATES # https 27 select BR2_PACKAGE_PYTHON_HASHLIB # urllib2 28 select BR2_PACKAGE_PYTHON_SSL # urllib2 29 30comment "pmu-query needs Python 2.x" 31 depends on !BR2_PACKAGE_PYTHON 32 33endif 34