From a35557d8f43b5a9ab80f3d86960c6ad8042e5e34 Mon Sep 17 00:00:00 2001 From: Huihuang Zheng Date: Thu, 19 Sep 2019 20:43:53 +0800 Subject: [PATCH] Fix deps of prune (#19876) Add boost as dependency of prune fix #19862 --- paddle/fluid/framework/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/framework/CMakeLists.txt b/paddle/fluid/framework/CMakeLists.txt index 275bb07a1f2..8fec40c8b7e 100644 --- a/paddle/fluid/framework/CMakeLists.txt +++ b/paddle/fluid/framework/CMakeLists.txt @@ -202,7 +202,7 @@ cc_library(parallel_executor SRCS parallel_executor.cc DEPS graph build_strategy fast_threaded_ssa_graph_executor variable_helper) -cc_library(prune SRCS prune.cc DEPS framework_proto) +cc_library(prune SRCS prune.cc DEPS framework_proto boost) cc_test(prune_test SRCS prune_test.cc DEPS op_info prune recurrent_op device_context) cc_test(var_type_inference_test SRCS var_type_inference_test.cc DEPS op_registry proto_desc) -- GitLab