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