From b5ed37ed0ec80a0230a39554e2f79c9b88cfa1a8 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Thu, 28 Jun 2018 09:05:11 -0700 Subject: [PATCH] shared_lib: add libspdk_thread to libspdk.so This was missed when splitting thread into its own library; the thread symbols were missing from libspdk.so. Change-Id: Ibcd1ea8cc5be1340cc4b848c81b4c92b036675a8 Fixes: 02d75f6237c8 ("thread: Move threading abstraction code out of util") Fixes: 6f46e272c3c0 ("build: add combined shared library (libspdk.so)") Signed-off-by: Daniel Verkamp Reviewed-on: https://review.gerrithub.io/417171 Tested-by: SPDK Automated Test System Reviewed-by: Ben Walker Reviewed-by: Shuhei Matsumoto --- shared_lib/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/shared_lib/Makefile b/shared_lib/Makefile index ffdb97c62..ed32c45a6 100644 --- a/shared_lib/Makefile +++ b/shared_lib/Makefile @@ -61,6 +61,7 @@ SPDK_LIB_LIST += net SPDK_LIB_LIST += nvmf SPDK_LIB_LIST += rpc SPDK_LIB_LIST += scsi +SPDK_LIB_LIST += thread SPDK_LIB_LIST += trace SPDK_LIB_LIST += util