telemetry can not depend on EAL anymore but it still wants to get arch headers. We directly point at the right source directories by using the same logic than EAL. However the special case of armv7 has been missed. Fix this by defaulting ARCH_DIR to RTE_ARCH. Caught on OBS: [ 162s] SYMLINK-FILE include/rte_telemetry.h [ 162s] CC telemetry.o [ 162s] CC telemetry_data.o [ 162s] CC telemetry_legacy.o [ 162s] .../lib/librte_telemetry/telemetry.c:15:10: fatal error: rte_spinlock.h: No such file or directory [ 162s] #include <rte_spinlock.h> [ 162s] ^~~~~~~~~~~~~~~~ [ 162s] compilation terminated. Fixes: 6dd571fd07c3 ("telemetry: introduce new functionality") Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
31 lines
657 B
Makefile
31 lines
657 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_telemetry.a
|
|
|
|
ARCH_DIR ?= $(RTE_ARCH)
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR)
|
|
CFLAGS += -I$(RTE_SDK)/lib/librte_metrics/
|
|
CFLAGS += -I$(RTE_SDK)/lib/librte_eal/include
|
|
CFLAGS += -I$(RTE_SDK)/lib/librte_eal/$(ARCH_DIR)/include
|
|
CFLAGS += -pthread
|
|
|
|
LDLIBS += -lpthread
|
|
|
|
EXPORT_MAP := rte_telemetry_version.map
|
|
|
|
# library source files
|
|
SRCS-y += telemetry.c
|
|
SRCS-y += telemetry_data.c
|
|
SRCS-y += telemetry_legacy.c
|
|
|
|
# export include files
|
|
SYMLINK-y-include := rte_telemetry.h
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|