cleanup: Remove copylibs section

It is no longer needed, we should already have all the libs we actually
need present in the targetfs/lib/ directory as we've been installing
them as we go.
This commit is contained in:
Andrew Bradford
2017-10-12 14:53:23 -04:00
parent adfc846ad6
commit 0b3adee12d
2 changed files with 0 additions and 24 deletions

View File

@ -11,7 +11,6 @@
<title>Backup and Cleanup</title>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="copylibs.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="chowning.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="copy-to-target.xml"/>

View File

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../general.ent">
%general-entities;
]>
<sect1 id="ch-cleanup-copy-libs">
<?dbhtml filename="copylibs.html"?>
<title>Copy Libraries</title>
<para>Since the cross compiler was built within
<filename>${CLFS}/cross-tools</filename>, the generated libraries need to be
copied to the target:</para>
<screen><userinput>cp -vP ${CLFS}/cross-tools/${CLFS_TARGET}/lib/*.so* ${CLFS}/targetfs/lib/</userinput></screen>
<para>Optionally, strip the libraries to reduce their size:</para>
<screen><userinput>${CLFS_TARGET}-strip ${CLFS}/targetfs/lib/*</userinput></screen>
</sect1>