diff options
author | Pierre Labastie <pieere@linuxfromscratch.org> | 2020-04-19 08:14:10 +0000 |
---|---|---|
committer | Pierre Labastie <pieere@linuxfromscratch.org> | 2020-04-19 08:14:10 +0000 |
commit | c2863e6d25a5baff47d5911de3e8ac0d2ec63c71 (patch) | |
tree | 3ca880318013309b03378fa150fd489c5146036f /chapter05/stripping.xml | |
parent | a5dddcb5160fe406abe429d747440272715d892a (diff) |
Add remarks about .la files telling that they are potentially harmful
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11815 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/stripping.xml')
-rw-r--r-- | chapter05/stripping.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chapter05/stripping.xml b/chapter05/stripping.xml index 10879d278..dc55959bf 100644 --- a/chapter05/stripping.xml +++ b/chapter05/stripping.xml @@ -31,7 +31,10 @@ <screen><userinput>rm -rf /tools/{,share}/{info,man,doc}</userinput></screen> - <para>Remove unneeded files:</para> + <para>The libtool .la files are only useful when linking with static + libraries. They are unneeded, and potentially harmful, when using dynamic + shared libraries, specially when using also non-autotools build systems. + Remove those files now:</para> <screen><userinput>find /tools/{lib,libexec} -name \*.la -delete</userinput></screen> |