From 34b4153e97cc24776cc3b8d2ab1685dc9aa8a875 Mon Sep 17 00:00:00 2001 From: Tao Luo Date: Fri, 24 Apr 2020 12:04:13 +0800 Subject: [PATCH] show statistics summary of ccache (#24125) test=develop --- paddle/scripts/paddle_build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/paddle/scripts/paddle_build.sh b/paddle/scripts/paddle_build.sh index c5be5bc142..d571cb5668 100755 --- a/paddle/scripts/paddle_build.sh +++ b/paddle/scripts/paddle_build.sh @@ -253,6 +253,8 @@ EOF function cmake_gen() { mkdir -p ${PADDLE_ROOT}/build cd ${PADDLE_ROOT}/build + # show statistics summary of ccache + ccache -s cache directory cmake_base $1 }