Unlike every other DPDK application's compilation, proc_info's compilation cannot be turned off on Linux. Fix it by adding a config option to base linuxapp config.
Fixes: 22561383ea17 ("app: replace dump_cfg by proc_info") Cc: maryam.tah...@intel.com Cc: sta...@dpdk.org Signed-off-by: Anatoly Burakov <anatoly.bura...@intel.com> --- Notes: v3: add config option to common_base and set it to 'n' v2: use config option instead of depending on librte_ethdev app/Makefile | 2 +- config/common_base | 5 +++++ config/common_linuxapp | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app/Makefile b/app/Makefile index 24c9067..aa44827 100644 --- a/app/Makefile +++ b/app/Makefile @@ -4,7 +4,7 @@ include $(RTE_SDK)/mk/rte.vars.mk DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd -DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += proc_info +DIRS-$(CONFIG_RTE_PROC_INFO) += proc_info DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump ifeq ($(CONFIG_RTE_LIBRTE_CRYPTODEV),y) diff --git a/config/common_base b/config/common_base index e74febe..aca4e7b 100644 --- a/config/common_base +++ b/config/common_base @@ -805,6 +805,11 @@ CONFIG_RTE_APP_TEST=y CONFIG_RTE_APP_TEST_RESOURCE_TAR=n # +# Compile the procinfo application +# +CONFIG_RTE_PROC_INFO=n + +# # Compile the PMD test application # CONFIG_RTE_TEST_PMD=y diff --git a/config/common_linuxapp b/config/common_linuxapp index 74c7d64..15c6961 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -50,3 +50,4 @@ CONFIG_RTE_LIBRTE_AVP_PMD=y CONFIG_RTE_LIBRTE_NFP_PMD=y CONFIG_RTE_LIBRTE_POWER=y CONFIG_RTE_VIRTIO_USER=y +CONFIG_RTE_PROC_INFO=y -- 2.7.4