diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2023-05-01 10:50:18 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2023-05-01 10:50:18 -0500 |
commit | a6c73fe5b2fb0617d44c1d1119444b1918157e17 (patch) | |
tree | 98db238a09d03690f6c2fde8e6e9b43f43d9b774 /chapter08 | |
parent | ed48f326097d347f89ebc2cea948fed82ed73c9a (diff) | |
parent | a4e48bc4eceab3ecc3d1f6ddd4217c61b0721bbd (diff) |
Merge branch 'bdubbs/gcc13' into trunk
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/coreutils.xml | 3 | ||||
-rw-r--r-- | chapter08/findutils.xml | 11 | ||||
-rw-r--r-- | chapter08/gcc.xml | 1 |
3 files changed, 10 insertions, 5 deletions
diff --git a/chapter08/coreutils.xml b/chapter08/coreutils.xml index 7c528d6c4..c72041b3b 100644 --- a/chapter08/coreutils.xml +++ b/chapter08/coreutils.xml @@ -54,11 +54,12 @@ </note> <!-- https://bugs.gnu.org/62403 --> +<!-- <para>Fix a bug in checksum utilities causing failed checks not reported correctly:</para> <screen><userinput remap="pre">sed '/if ( ! match/s/ed_checksums//' -i src/digest.c</userinput></screen> - +--> <para>Now prepare Coreutils for compilation:</para> <screen><userinput remap="configure">autoreconf -fiv diff --git a/chapter08/findutils.xml b/chapter08/findutils.xml index c12452668..5440490cf 100644 --- a/chapter08/findutils.xml +++ b/chapter08/findutils.xml @@ -47,21 +47,24 @@ <para>Prepare Findutils for compilation:</para> +<!-- no longer needed with gcc13 <screen><userinput remap="configure">case $(uname -m) in - i?86) TIME_T_32_BIT_OK=yes ./configure --prefix=/usr --localstatedir=/var/lib/locate ;; - x86_64) ./configure --prefix=/usr --localstatedir=/var/lib/locate ;; + i?86) TIME_T_32_BIT_OK=yes ./configure - -prefix=/usr - -localstatedir=/var/lib/locate ;; + x86_64) ./configure - -prefix=/usr - -localstatedir=/var/lib/locate ;; esac</userinput></screen> +--> + <screen><userinput remap="configure">./configure --prefix=/usr --localstatedir=/var/lib/locate</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> - +<!-- <varlistentry> <term><command>TIME_32_BIT_OK=yes</command></term> <listitem> <para>This setting is needed for building on a 32 bit system.</para> </listitem> </varlistentry> - +--> <varlistentry> <term><parameter>--localstatedir</parameter></term> <listitem> diff --git a/chapter08/gcc.xml b/chapter08/gcc.xml index 4b5c2dd61..546ad6b1a 100644 --- a/chapter08/gcc.xml +++ b/chapter08/gcc.xml @@ -78,6 +78,7 @@ cd build</userinput></screen> --enable-default-ssp \ --disable-multilib \ --disable-bootstrap \ + --disable-fixinclude \ --with-system-zlib</userinput></screen> <para>GCC supports seven different computer languages, but the |