Correctd the spelling of "Werror" -- it's "-Werror" in GCC, but

it's "--disable-error" in Glibc. Thanks to Thomas Trepl for spotting
my mistake.
This commit is contained in:
David Bryant 2022-11-17 16:14:42 -06:00
parent 091d624df5
commit 27601131e4

View File

@ -70,7 +70,7 @@ cd build</userinput></screen>
<para>Prepare Glibc for compilation:</para> <para>Prepare Glibc for compilation:</para>
<screen><userinput remap="configure">../configure --prefix=/usr \ <screen><userinput remap="configure">../configure --prefix=/usr \
--disable-werror \ --disable-Werror \
--enable-kernel=&min-kernel; \ --enable-kernel=&min-kernel; \
--enable-stack-protector=strong \ --enable-stack-protector=strong \
--with-headers=/usr/include \ --with-headers=/usr/include \
@ -82,7 +82,7 @@ cd build</userinput></screen>
<varlistentry> <varlistentry>
<term><parameter>--disable-werror</parameter></term> <term><parameter>--disable-werror</parameter></term>
<listitem> <listitem>
<para>This option disables the -werror option passed to <para>This option disables the -Werror option passed to
GCC. This is necessary for running the test suite.</para> GCC. This is necessary for running the test suite.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>