[Clfs-commits] commit: r4500 - in /trunk/BOOK/cross-tools: 64/flags.xml 64/gcc-static.xml 64/glibc.xml alpha/glibc-headers.xml common/glibc.xml ppc/glibc.xml sparc64/glibc-64bit.xml

svn at cross-lfs.org svn at cross-lfs.org
Sun Jan 18 23:36:50 PST 2009


Author: jim
Date: Mon Jan 19 07:36:49 2009
New Revision: 4500

Log:
Changed all echos in glibc to cat. Fixed symbols

Modified:
    trunk/BOOK/cross-tools/64/flags.xml
    trunk/BOOK/cross-tools/64/gcc-static.xml
    trunk/BOOK/cross-tools/64/glibc.xml
    trunk/BOOK/cross-tools/alpha/glibc-headers.xml
    trunk/BOOK/cross-tools/common/glibc.xml
    trunk/BOOK/cross-tools/ppc/glibc.xml
    trunk/BOOK/cross-tools/sparc64/glibc-64bit.xml

Modified: trunk/BOOK/cross-tools/64/flags.xml
==============================================================================
--- trunk/BOOK/cross-tools/64/flags.xml (original)
+++ trunk/BOOK/cross-tools/64/flags.xml Mon Jan 19 07:36:49 2009
@@ -11,13 +11,13 @@
   <title>Build Flags</title>
 
   <para os="a">We will need to setup target specific flags for the compiler
-  and linkers.</para>
+    and linkers.</para>
 
-<screen os="b"><userinput>export BUILD64="-m64"</userinput></screen>
+  <screen os="b"><userinput>export BUILD64="-m64"</userinput></screen>
 
   <para os="c">Lets add the build flags to <filename>~/.bashrc</filename> to
-  prevent issues if we stop and come back later.</para>
+    prevent issues if we stop and come back later.</para>
 
-<screen os="d"><userinput>echo export BUILD64=\""${BUILD64}\"" >> ~/.bashrc</userinput></screen>
+  <screen os="d"><userinput>echo export BUILD64=\""${BUILD64}\"" >> ~/.bashrc</userinput></screen>
 
 </sect1>

Modified: trunk/BOOK/cross-tools/64/gcc-static.xml
==============================================================================
--- trunk/BOOK/cross-tools/64/gcc-static.xml (original)
+++ trunk/BOOK/cross-tools/64/gcc-static.xml Mon Jan 19 07:36:49 2009
@@ -35,7 +35,7 @@
     href="../common/gcc-static.xml"
     xpointer="xpointer(//*[@os='aa'])"/>
 
-<screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs_pure64-patch;</userinput></screen>
+    <screen os="ab"><userinput>patch -Np1 -i ../&gcc-specs_pure64-patch;</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     href="../common/gcc-static.xml"

Modified: trunk/BOOK/cross-tools/64/glibc.xml
==============================================================================
--- trunk/BOOK/cross-tools/64/glibc.xml (original)
+++ trunk/BOOK/cross-tools/64/glibc.xml Mon Jan 19 07:36:49 2009
@@ -62,14 +62,14 @@
     href="../common/glibc.xml"
     xpointer="xpointer(//*[@os='g'])"/>
 
-<screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILD64}" \
-    AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
-    ../glibc-&glibc-version;/configure --prefix=/tools \
-    --host=${CLFS_TARGET} --build=${CLFS_HOST} \
-    --disable-profile --enable-add-ons \
-    --with-tls --enable-kernel=2.6.0 --with-__thread \
-    --with-binutils=/cross-tools/bin --with-headers=/tools/include \
-    --cache-file=config.cache</userinput></screen>
+    <screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILD64}" \
+      AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
+      ../glibc-&glibc-version;/configure --prefix=/tools \
+      --host=${CLFS_TARGET} --build=${CLFS_HOST} \
+      --disable-profile --enable-add-ons \
+      --with-tls --enable-kernel=2.6.0 --with-__thread \
+      --with-binutils=/cross-tools/bin --with-headers=/tools/include \
+      --cache-file=config.cache</userinput></screen>
 
     <variablelist os="dg">
       <title>The meaning of the new configure options:</title>

Modified: trunk/BOOK/cross-tools/alpha/glibc-headers.xml
==============================================================================
--- trunk/BOOK/cross-tools/alpha/glibc-headers.xml (original)
+++ trunk/BOOK/cross-tools/alpha/glibc-headers.xml Mon Jan 19 07:36:49 2009
@@ -45,11 +45,13 @@
     href="../common/glibc.xml"
     xpointer="xpointer(//*[@os='dd'])"/>
 
-<screen os="de"><userinput>echo "libc_cv_forced_unwind=yes" > config.cache
-echo "libc_cv_c_cleanup=yes" >> config.cache
-echo "libc_cv_mlong_double_128=yes" >> config.cache
-echo "libc_cv_alpha_tls=yes" >> config.cache
-echo "libc_cv_gnu89_inline=yes" >> config.cache</userinput></screen>
+<screen os="de"><userinput>cat > config.cache << "EOF"
+libc_cv_forced_unwind=yes
+libc_cv_c_cleanup=yes
+libc_cv_mlong_double_128=yes
+libc_cv_alpha_tls=yes
+libc_cv_gnu99_inline=yes
+EOF</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     href="../../final-system/common/glibc.xml"

Modified: trunk/BOOK/cross-tools/common/glibc.xml
==============================================================================
--- trunk/BOOK/cross-tools/common/glibc.xml (original)
+++ trunk/BOOK/cross-tools/common/glibc.xml Mon Jan 19 07:36:49 2009
@@ -49,7 +49,7 @@
     <para os="dd">The following lines need to be added to
     <filename>config.cache</filename> for Glibc to support NPTL:</para>
 
-<screen os="de"><userinput>cat > config.cache << "EOF"
+<screen os="de"><userinput>cat > config.cache << "EOF"
 libc_cv_forced_unwind=yes
 libc_cv_c_cleanup=yes
 libc_cv_gnu99_inline=yes

Modified: trunk/BOOK/cross-tools/ppc/glibc.xml
==============================================================================
--- trunk/BOOK/cross-tools/ppc/glibc.xml (original)
+++ trunk/BOOK/cross-tools/ppc/glibc.xml Mon Jan 19 07:36:49 2009
@@ -54,10 +54,12 @@
     href="../common/glibc.xml"
     xpointer="xpointer(//*[@os='dd'])"/>
 
-<screen os="de"><userinput>echo "libc_cv_forced_unwind=yes" > config.cache
-echo "libc_cv_c_cleanup=yes" >> config.cache
-echo "libc_cv_ppc_machine=yes" >> config.cache
-echo "libc_cv_gnu89_inline=yes" >> config.cache</userinput></screen>
+<screen os="de"><userinput>cat > config.cache << "EOF"
+libc_cv_forced_unwind=yes
+libc_cv_c_cleanup=yes
+libc_cv_ppc_machine=yes
+libc_cv_gnu99_inline=yes
+EOF</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     href="../../final-system/common/glibc.xml"

Modified: trunk/BOOK/cross-tools/sparc64/glibc-64bit.xml
==============================================================================
--- trunk/BOOK/cross-tools/sparc64/glibc-64bit.xml (original)
+++ trunk/BOOK/cross-tools/sparc64/glibc-64bit.xml Mon Jan 19 07:36:49 2009
@@ -54,10 +54,12 @@
     href="../common/glibc.xml"
     xpointer="xpointer(//*[@os='dd'])"/>
 
-<screen os="de"><userinput>echo "libc_cv_forced_unwind=yes" > config.cache
-echo "libc_cv_c_cleanup=yes" >> config.cache
-echo "libc_cv_sparc64_tls=yes" >> config.cache
-echo "libc_cv_gnu89_inline=yes" >> config.cache</userinput></screen>
+<screen os="de"><userinput>cat > config.cache << "EOF"
+libc_cv_forced_unwind=yes
+libc_cv_c_cleanup=yes
+libc_cv_sparc64_tls=yes
+libc_cv_gnu99_inline=yes
+EOF</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     href="../multilib/glibc-64bit.xml"




More information about the Clfs-commits mailing list