From e7c9f620460d7ad8428f9327182ecc4080300399 Mon Sep 17 00:00:00 2001 From: Jim Harris Date: Wed, 15 Aug 2018 09:19:46 -0700 Subject: [PATCH] jsoncat, histogram_perf: add missing dependencies These weren't needed for static linking, but popped up as problems with some upcoming patches enabling individual shared libraries. Signed-off-by: Jim Harris Change-Id: Iba13926bd504831046eeb48da8f35e7df9ef8801 Reviewed-on: https://review.gerrithub.io/422442 Tested-by: SPDK CI Jenkins Reviewed-by: Changpeng Liu Reviewed-by: Ben Walker Chandler-Test-Pool: SPDK Automated Test System --- test/app/histogram_perf/Makefile | 2 +- test/app/jsoncat/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/app/histogram_perf/Makefile b/test/app/histogram_perf/Makefile index a586307c7..7c6ecd89c 100644 --- a/test/app/histogram_perf/Makefile +++ b/test/app/histogram_perf/Makefile @@ -39,7 +39,7 @@ APP = histogram_perf C_SRCS = histogram_perf.c -SPDK_LIB_LIST = thread util +SPDK_LIB_LIST = thread util log LIBS += $(SPDK_LIB_LINKER_ARGS) $(ENV_LINKER_ARGS) diff --git a/test/app/jsoncat/Makefile b/test/app/jsoncat/Makefile index 407e86e62..2bbba95b8 100644 --- a/test/app/jsoncat/Makefile +++ b/test/app/jsoncat/Makefile @@ -39,9 +39,9 @@ APP = jsoncat C_SRCS = jsoncat.c -SPDK_LIB_LIST = json thread util +SPDK_LIB_LIST = json thread util log -LIBS += $(SPDK_LIB_LINKER_ARGS) +LIBS += $(SPDK_LIB_LINKER_ARGS) $(ENV_LINKER_ARGS) all: $(APP) @: