Author: jim
Date: 2005-04-23 11:01:20 -0600 (Sat, 23 Apr 2005)
New Revision: 5051

Removed:
   branches/cross-lfs/BOOK/final-system/perl-pass1.xml
Modified:
   branches/cross-lfs/BOOK/cross-tools/gcc-final.xml
   branches/cross-lfs/BOOK/cross-tools/gcc-shared.xml
   branches/cross-lfs/BOOK/cross-tools/gcc-static.xml
   branches/cross-lfs/BOOK/final-system/chapter.xml
   branches/cross-lfs/BOOK/introduction/changelog.xml
Log:
More Fixes

Modified: branches/cross-lfs/BOOK/cross-tools/gcc-final.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/gcc-final.xml   2005-04-23 10:34:47 UTC 
(rev 5050)
+++ branches/cross-lfs/BOOK/cross-tools/gcc-final.xml   2005-04-23 17:01:20 UTC 
(rev 5051)
@@ -40,13 +40,8 @@
 
 <screen><userinput>echo "
 #undef STARTFILE_PREFIX_SPEC
-#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >> 
../gcc-3.4.3/gcc/config/linux.h</userinput></screen>
+#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >> 
gcc/config/linux.h</userinput></screen>
 
-<para>Now we will change gcc's search path to look into /cross-tools 
only:</para>
-
-<screen><userinput>sed -i "[EMAIL PROTECTED](^CROSS_SYSTEM_HEADER_DIR 
=\)[EMAIL PROTECTED] /tools/[EMAIL PROTECTED]" \
-gcc/Makefile.in</userinput></screen>
-
 <para>The GCC documentation recommends building GCC outside of the
 source directory in a dedicated build directory:</para>
 
@@ -56,7 +51,7 @@
 <para>Prepare GCC for compilation:</para>
 
 <screen><userinput>../gcc-&gcc-version;/configure --prefix=/cross-tools \
-    --target=${LFS_TARGET} --libexecdir=/cross-tools/lib 
--with-local-prefix=/tools \
+    --target=${LFS_TARGET} --with-local-prefix=/tools \
     --disable-nls --enable-shared --enable-languages=c,c++ 
--enable-__cxa_atexit \
     --enable-c99 --enable-long-long --enable-threads=posix</userinput></screen>
 
@@ -64,7 +59,7 @@
 
 <variablelist>
 <varlistentry>
-<term><parameter>--with-local-prefix=/cross-tools</parameter></term>
+<term><parameter>--with-local-prefix=/tools</parameter></term>
 <listitem><para>The purpose of this switch is to remove <filename 
class="directory">/usr/local/include</filename>
 from <command>gcc</command>'s include search path. This is not absolutely
 essential, however, it helps to minimize the influence of the host

Modified: branches/cross-lfs/BOOK/cross-tools/gcc-shared.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/gcc-shared.xml  2005-04-23 10:34:47 UTC 
(rev 5050)
+++ branches/cross-lfs/BOOK/cross-tools/gcc-shared.xml  2005-04-23 17:01:20 UTC 
(rev 5051)
@@ -40,7 +40,7 @@
 
 <screen><userinput>echo "
 #undef STARTFILE_PREFIX_SPEC
-#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >> 
../gcc-3.4.3/gcc/config/linux.h</userinput></screen>
+#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >> 
gcc/config/linux.h</userinput></screen>
 
 <para>Now we will change gcc's search path to look into /tools only:</para>
 

Modified: branches/cross-lfs/BOOK/cross-tools/gcc-static.xml
===================================================================
--- branches/cross-lfs/BOOK/cross-tools/gcc-static.xml  2005-04-23 10:34:47 UTC 
(rev 5050)
+++ branches/cross-lfs/BOOK/cross-tools/gcc-static.xml  2005-04-23 17:01:20 UTC 
(rev 5051)
@@ -40,7 +40,7 @@
 
 <screen><userinput>echo "
 #undef STARTFILE_PREFIX_SPEC
-#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >> 
../gcc-3.4.3/gcc/config/linux.h</userinput></screen>
+#define STARTFILE_PREFIX_SPEC \"/tools/lib/\"" >> 
gcc/config/linux.h</userinput></screen>
 
 <para>Now we will change gcc's search path to look into /tools only:</para>
 

Modified: branches/cross-lfs/BOOK/final-system/chapter.xml
===================================================================
--- branches/cross-lfs/BOOK/final-system/chapter.xml    2005-04-23 10:34:47 UTC 
(rev 5050)
+++ branches/cross-lfs/BOOK/final-system/chapter.xml    2005-04-23 17:01:20 UTC 
(rev 5051)
@@ -9,7 +9,7 @@
 <?dbhtml filename="chapter.html"?>
 
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; 
href="introduction.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="perl-pass1.xml"/>
+<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="perl.xml"/>
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="glibc.xml"/>
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="adjusting.xml"/>
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="binutils.xml"/>
@@ -30,7 +30,6 @@
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="gettext.xml"/>
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="inetutils.xml"/>
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="iproute2.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="perl.xml"/>
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="texinfo.xml"/>
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="autoconf.xml"/>
 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"; href="automake.xml"/>

Deleted: branches/cross-lfs/BOOK/final-system/perl-pass1.xml
===================================================================
--- branches/cross-lfs/BOOK/final-system/perl-pass1.xml 2005-04-23 10:34:47 UTC 
(rev 5050)
+++ branches/cross-lfs/BOOK/final-system/perl-pass1.xml 2005-04-23 17:01:20 UTC 
(rev 5051)
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" 
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"; [
-  <!ENTITY % general-entities SYSTEM "../general.ent">
-  %general-entities;
-]>
-<sect1 id="ch-system-perl-pass1" role="wrap">
-<title>Perl-&perl-version;</title>
-<?dbhtml filename="perl.html"?>
-
-<indexterm zone="ch-system-perl-pass1"><primary 
sortas="a-Perl">Perl</primary></indexterm>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude";
-       href="perl.xml"
-       xpointer="xpointer(/sect1/[EMAIL PROTECTED]'package'])"/>
-
-<xi:include xmlns:xi="http://www.w3.org/2003/XInclude";
-       href="perl.xml"
-       xpointer="xpointer(/sect1/[EMAIL PROTECTED]'installation'])"/>
-
-<sect2 role="content"><title/>
-<para>Details on this package are located in <xref
-linkend="contents-perl" role="."/></para>
-</sect2>
-
-</sect1>
-

Modified: branches/cross-lfs/BOOK/introduction/changelog.xml
===================================================================
--- branches/cross-lfs/BOOK/introduction/changelog.xml  2005-04-23 10:34:47 UTC 
(rev 5050)
+++ branches/cross-lfs/BOOK/introduction/changelog.xml  2005-04-23 17:01:20 UTC 
(rev 5051)
@@ -94,6 +94,15 @@
 -->
 
 <itemizedlist>
+<listitem><para>Date [jim]</para>
+<itemizedlist>
+<listitem><para>Removed uneeded perl-pass1.xml.</para></listitem>
+<listitem><para>Updated commands in gcc for cross-tools.</para></listitem>
+</itemizedlist>
+</listitem>
+</itemizedlist>
+
+<itemizedlist>
 <listitem><para>April 23, 2005 [manuel]</para>
 <itemizedlist>
 <listitem><para>Added final-system/perl-pass1.xml to can validate 

-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-book
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to