From f6883c972a7f8aea299a61146142517a8255414d Mon Sep 17 00:00:00 2001 From: Dani Date: Sat, 9 May 2020 13:46:28 +0200 Subject: [PATCH] Paraphrase utility of strip --- pills/09-automatic-runtime.xml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pills/09-automatic-runtime.xml b/pills/09-automatic-runtime.xml index f75afc4..7acab14 100644 --- a/pills/09-automatic-runtime.xml +++ b/pills/09-automatic-runtime.xml @@ -149,9 +149,12 @@ - Even after reducing the rpath the hello binary would still depend - upon gcc. This is because of debugging information. To fix is the well - known strip can be used. + Even after reducing the rpath, the hello binary would still + depend upon gcc because of some debugging information. This + unnecesarily increases the size of our runtime + dependencies. We'll explore how strip + can help us with that in the next section.