diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2019-02-05 21:10:38 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2019-02-05 21:10:38 +0000 |
commit | 082bbce4904ccc9b9c15748beb1ac344ab2f763e (patch) | |
tree | e4d0b7e98741b014a3f2a4111d9fda786c2c89c4 /chapter06 | |
parent | 597ec033cf1b8bed04ebcd8653e233de8d1fd759 (diff) |
Update to bison-3.3.2.
Update to meson-0.49.2.
Remove obsolete optio in zic commands in glibc page.
Separate symlink creation for glibc tests to avoid jhalfs build problem.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11511 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/glibc.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index ec6d10d1f..298480e7a 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -151,17 +151,18 @@ unset GCC_INCDIR</userinput></screen> <para>Generally a few tests do not pass. The test failures listed below are usually safe to ignore.</para> -<screen><userinput remap="test">case $(uname -m) in +<!-- Use remap="make" here to work around a jhalfs issue. --> +<screen><userinput remap="make">case $(uname -m) in i?86) ln -sfnv $PWD/elf/ld-linux.so.2 /lib ;; x86_64) ln -sfnv $PWD/elf/ld-linux-x86-64.so.2 /lib ;; -esac - -make check</userinput></screen> +esac</userinput></screen> <note><para>The symbolic link above is needed to run the tests at this stage of building in the chroot envirnment. It will be overwritten in the install phase below.</para></note> +<screen><userinput remap="test">make check</userinput></screen> + <para>You may see some test failures. The Glibc test suite is somewhat dependent on the host system. This is a list of the most common issues seen for some versions of LFS:</para> @@ -358,9 +359,9 @@ mkdir -pv $ZONEINFO/{posix,right} for tz in etcetera southamerica northamerica europe africa antarctica \ asia australasia backward pacificnew systemv; do - zic -L /dev/null -d $ZONEINFO -y "sh yearistype.sh" ${tz} - zic -L /dev/null -d $ZONEINFO/posix -y "sh yearistype.sh" ${tz} - zic -L leapseconds -d $ZONEINFO/right -y "sh yearistype.sh" ${tz} + zic -L /dev/null -d $ZONEINFO ${tz} + zic -L /dev/null -d $ZONEINFO/posix ${tz} + zic -L leapseconds -d $ZONEINFO/right ${tz} done cp -v zone.tab zone1970.tab iso3166.tab $ZONEINFO |