diff options
Diffstat (limited to 'chapter05/binutils-pass1.xml')
-rw-r--r-- | chapter05/binutils-pass1.xml | 10 |
1 files changed, 9 insertions, 1 deletions
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> |