Commit 0bfc0391 authored by Maciej Szwed's avatar Maciej Szwed Committed by Tomasz Zawadzki
Browse files

event: Do not compile DPDK related code for non-DPDK env



dpdk_governor (and therefore scheduler_dynamic) use DPDK
env. It should not be compiled in non-DPDK env.

Signed-off-by: default avatarMaciej Szwed <maciej.szwed@intel.com>
Change-Id: I6b7cf15cf7383e6c1e77bfb188b24cabcc1f0fe1
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6102


Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
Community-CI: Broadcom CI
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
parent de3878ec
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -41,10 +41,15 @@ CFLAGS += $(ENV_CFLAGS)

LIBNAME = event
C_SRCS = app.c reactor.c rpc.c subsystem.c json_config.c log_rpc.c \
	 app_rpc.c subsystem_rpc.c scheduler_static.c scheduler_dynamic.c
	 app_rpc.c subsystem_rpc.c scheduler_static.c

# Do not compile schedulers and governors based on DPDK env
# if non-DPDK env is used.
ENV_NAME := $(notdir $(CONFIG_ENV))
ifeq ($(ENV_NAME),env_dpdk)
ifeq ($(OS),Linux)
C_SRCS += gscheduler.c dpdk_governor.c
C_SRCS += gscheduler.c dpdk_governor.c scheduler_dynamic.c
endif
endif

SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_event.map)