From 556ba20b037625ea17d3b68581a75e07c863944d Mon Sep 17 00:00:00 2001 From: huzhiqiang <912790387@qq.com> Date: Mon, 9 Mar 2020 00:08:13 +0800 Subject: [PATCH] [lib size] strip the static lib to reduce its size #3098 --- lite/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/lite/CMakeLists.txt b/lite/CMakeLists.txt index 5b676c9937..657b1ac82a 100644 --- a/lite/CMakeLists.txt +++ b/lite/CMakeLists.txt @@ -186,6 +186,7 @@ if (LITE_WITH_LIGHT_WEIGHT_FRAMEWORK AND LITE_WITH_ARM) add_dependencies(publish_inference tiny_publish_cxx_lib) if(NOT "${CMAKE_BUILD_TYPE}" STREQUAL "Debug") add_custom_command(TARGET tiny_publish_cxx_lib POST_BUILD + COMMAND ${CMAKE_STRIP} "-s" ${INFER_LITE_PUBLISH_ROOT}/cxx/lib/libpaddle_api_light_bundled.a COMMAND ${CMAKE_STRIP} "-s" ${INFER_LITE_PUBLISH_ROOT}/cxx/lib/libpaddle_light_api_shared.so) endif() endif() -- GitLab