The library is called librte_pmd_octeonx_compress, so rename the map file and set the name in the meson file so that the built library names with meson and legacy makefiles are the same
Fixes: 43e610bb8565 ("compress/octeontx: introduce octeontx zip PMD") Cc: sta...@dpdk.org Signed-off-by: Luca Boccassi <bl...@debian.org> --- drivers/compress/octeontx/Makefile | 2 +- drivers/compress/octeontx/meson.build | 2 +- ...tx_compress_version.map => rte_pmd_octeontx_zip_version.map} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename drivers/compress/octeontx/{rte_pmd_octeontx_compress_version.map => rte_pmd_octeontx_zip_version.map} (100%) diff --git a/drivers/compress/octeontx/Makefile b/drivers/compress/octeontx/Makefile index f34424c87f..0499004402 100644 --- a/drivers/compress/octeontx/Makefile +++ b/drivers/compress/octeontx/Makefile @@ -25,6 +25,6 @@ SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_ZIPVF) += otx_zip_pmd.c SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_ZIPVF) += otx_zip.c # versioning export map -EXPORT_MAP := rte_pmd_octeontx_compress_version.map +EXPORT_MAP := rte_pmd_octeontx_zip_version.map include $(RTE_SDK)/mk/rte.lib.mk diff --git a/drivers/compress/octeontx/meson.build b/drivers/compress/octeontx/meson.build index 7cd202d07a..520d19684b 100644 --- a/drivers/compress/octeontx/meson.build +++ b/drivers/compress/octeontx/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Cavium, Inc -name = 'octeontx_compress' +name = 'octeontx_zip' sources = files('otx_zip.c', 'otx_zip_pmd.c') allow_experimental_apis = true includes += include_directories('include') diff --git a/drivers/compress/octeontx/rte_pmd_octeontx_compress_version.map b/drivers/compress/octeontx/rte_pmd_octeontx_zip_version.map similarity index 100% rename from drivers/compress/octeontx/rte_pmd_octeontx_compress_version.map rename to drivers/compress/octeontx/rte_pmd_octeontx_zip_version.map -- 2.18.0