aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/gcc.xml
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-06-13 19:25:16 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-06-13 19:25:16 +0000
commitbb55064a0b6cb7c96059cc6ea9fae49f709fc746 (patch)
treedc6f99c5a2e95d025832969459fd767825e2a8f3 /chapter06/gcc.xml
parent5ce2fc9ccd0be403e9eee9f97b4116536e485647 (diff)
Tags corrections.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3784 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/gcc.xml')
-rw-r--r--chapter06/gcc.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml
index 662e95dfe..f1f5bbccd 100644
--- a/chapter06/gcc.xml
+++ b/chapter06/gcc.xml
@@ -30,7 +30,7 @@ Gawk, Gettext, Glibc, Grep, Make, Perl, Sed, Texinfo</seg></seglistitem>
<title>Installation of GCC</title>
<para>This package is known to behave badly when you have changed its
-default optimization flags (including the -march and -mcpu options).
+default optimization flags (including the <parameter>-march</parameter> and <parameter>-mcpu</parameter> options).
Therefore, if you have defined any environment variables that override
default optimizations, such as CFLAGS and CXXFLAGS, we recommend un-setting
or modifying them when building GCC.</para>
@@ -47,8 +47,8 @@ the Specs patch) also used in the previous chapter:</para>
<screen><userinput>patch -Np1 -i ../gcc-&gcc-short-version;-no_fixincludes-1.patch</userinput></screen>
<para>Now apply a sed substitution that will suppress the installation of
-<filename>libiberty.a</filename>. We want to use the version of
-<filename>libiberty.a</filename> provided by Binutils:</para>
+<filename class="libraryfile">libiberty.a</filename>. We want to use the version of
+<filename class="libraryfile">libiberty.a</filename> provided by Binutils:</para>
<screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
@@ -86,7 +86,7 @@ doubts.</para>
<screen><userinput>make install</userinput></screen>
<para>Some packages expect the C PreProcessor to be installed in the
-<filename>/lib</filename> directory.
+<filename class="directory">/lib</filename> directory.
To support those packages, create this symlink:</para>
<screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
@@ -161,15 +161,15 @@ analyze programs to find out where optimizations will have the most effect.</par
</varlistentry>
<varlistentry id="libgcc">
-<term><command>libgcc*</command></term>
+<term><filename class="libraryfile">libgcc*</filename></term>
<listitem>
<indexterm zone="ch-system-gcc libgcc"><primary sortas="c-libgcc*">libgcc*</primary></indexterm>
-<para>contains run-time support for gcc.</para>
+<para>contains run-time support for <command>gcc</command>.</para>
</listitem>
</varlistentry>
<varlistentry id="libstdc">
-<term><command>libstdc++</command></term>
+<term><filename class="libraryfile">libstdc++</filename></term>
<listitem>
<indexterm zone="ch-system-gcc libstdc"><primary sortas="c-libstdc++">libstdc++</primary></indexterm>
<para>is the standard C++ library. It contains many frequently-used functions.</para>
@@ -177,7 +177,7 @@ analyze programs to find out where optimizations will have the most effect.</par
</varlistentry>
<varlistentry id="libsupc">
-<term><command>libsupc++</command></term>
+<term><filename class="libraryfile">libsupc++</filename></term>
<listitem>
<indexterm zone="ch-system-gcc libsupc"><primary sortas="c-libsupc++">libsupc++</primary></indexterm>
<para>provides supporting routines for the c++ programming language.</para>