diff options
author | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2007-08-07 20:12:13 +0000 |
---|---|---|
committer | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2007-08-07 20:12:13 +0000 |
commit | 03710b414f52af018ba4c5b4bfb90cdc3bbae82d (patch) | |
tree | fa853efd0d67e02272b696e31bca6d9d7cbd47d5 | |
parent | ac713c1b38c5c5afc208f23ffea0064a842a114e (diff) |
Merge r8278 from trunk
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.3/BOOK@8280 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 10 | ||||
-rw-r--r-- | chapter05/binutils-pass1.xml | 10 | ||||
-rw-r--r-- | general.ent | 4 |
3 files changed, 21 insertions, 3 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index b0db87d6f..97316e2a7 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -38,6 +38,16 @@ <listitem> + <para>2007-08-07</para> + <itemizedlist> + <listitem> + <para>[dnicholson] - Added the <parameter>--disable-werror</parameter> + parameter to Binutils Pass 1.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2007-08-06</para> <itemizedlist> <listitem> diff --git a/chapter05/binutils-pass1.xml b/chapter05/binutils-pass1.xml index 4a4565e72..2c3615feb 100644 --- a/chapter05/binutils-pass1.xml +++ b/chapter05/binutils-pass1.xml @@ -60,7 +60,7 @@ cd ../binutils-build</userinput></screen> <para>Now prepare Binutils for compilation:</para> <screen><userinput>CC="gcc -B/usr/bin/" ../binutils-&binutils-version;/configure \ - --prefix=/tools --disable-nls</userinput></screen> + --prefix=/tools --disable-nls --disable-werror</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> @@ -93,6 +93,14 @@ cd ../binutils-build</userinput></screen> </listitem> </varlistentry> + <varlistentry> + <term><parameter>--disable-werror</parameter></term> + <listitem> + <para>This prevents the build from stopping in the event that there + are warnings from the host's compiler.</para> + </listitem> + </varlistentry> + </variablelist> <para>Continue with compiling the package:</para> diff --git a/general.ent b/general.ent index 802a6602c..1c39b8b67 100644 --- a/general.ent +++ b/general.ent @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!ENTITY version "6.3-20070806"> -<!ENTITY releasedate "August 6, 2007"> +<!ENTITY version "6.3-20070807"> +<!ENTITY releasedate "August 7, 2007"> <!ENTITY milestone "6.3"> <!ENTITY generic-version "6.3-branch"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> |