Changeset cf65195 for chapter08


Ignore:
Timestamp:
07/02/2021 07:18:52 AM (3 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
ml-11.0, multilib, xry111/multilib
Children:
2ab0d9c
Parents:
641ab9be (diff), d8a492a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

Location:
chapter08
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter08/gcc.xml

    r641ab9be rcf65195  
    4242    <title>Installation of GCC</title>
    4343
    44     <para arch="default">If building on x86_64, change the default directory name for 64-bit
     44    <para>First, apply a patch to fix some regressions and to cope
     45    with the removal of an obsolete kernel header in linux-5.13:</para>
     46
     47<screen><userinput remap="pre">patch -Np1 -i ../gcc-&gcc-version;-upstream_fixes-1.patch</userinput></screen>
     48
     49    <para>If building on x86_64, change the default directory name for 64-bit
    4550    libraries to <quote>lib</quote>:</para>
    4651
     
    140145    <ulink url="https://gcc.gnu.org/ml/gcc-testresults/"/>.</para>
    141146
    142     <para>Six tests related to get_time are known to fail.  These are
    143     apparently related to the en_HK locale.</para>
    144 
    145     <para>Additionally, three tests in constexpr-52830 are known to fail.</para>
     147    <para>In g++, three tests in constexpr-52830 are known to fail and
     148    also to be treated as unexpected successes (XPASS).  This is because
     149    an <quote>internal compiler error</quote> on this test is fixed, but
     150    the compiler still rejects some valid code.</para>
     151
     152    <!--  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96322
     153          https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71367 -->
     154    <para>In libstdc++, one numpunct test and six tests related to get_time are
     155    known to fail.  These are all because the locale definitions in glibc have
     156    changed but libstdc++ does not currently support those changes.</para>
    146157
    147158<!--<para>Additionally the following tests related to the following files
     
    169180    </para></note-->
    170181
     182    <!-- PR 91085, will be fixed in GCC 12. -->
    171183    <para>Install the package and remove an unneeded directory:</para>
    172184
  • chapter08/glibc.xml

    r641ab9be rcf65195  
    266266localedef -i de_DE -f UTF-8 de_DE.UTF-8
    267267localedef -i el_GR -f ISO-8859-7 el_GR
     268localedef -i en_GB -f ISO-8859-1 en_GB
    268269localedef -i en_GB -f UTF-8 en_GB.UTF-8
    269270localedef -i en_HK -f ISO-8859-1 en_HK
     
    271272localedef -i en_US -f ISO-8859-1 en_US
    272273localedef -i en_US -f UTF-8 en_US.UTF-8
     274localedef -i es_ES -f ISO-8859-15 es_ES@euro
    273275localedef -i es_MX -f ISO-8859-1 es_MX
    274276localedef -i fa_IR -f UTF-8 fa_IR
     
    276278localedef -i fr_FR@euro -f ISO-8859-15 fr_FR@euro
    277279localedef -i fr_FR -f UTF-8 fr_FR.UTF-8
     280localedef -i is_IS -f ISO-8859-1 is_IS
     281localedef -i is_IS -f UTF-8 is_IS.UTF-8
    278282localedef -i it_IT -f ISO-8859-1 it_IT
     283localedef -i it_IT -f ISO-8859-15 it_IT@euro
    279284localedef -i it_IT -f UTF-8 it_IT.UTF-8
    280285localedef -i ja_JP -f EUC-JP ja_JP
    281286localedef -i ja_JP -f SHIFT_JIS ja_JP.SIJS 2> /dev/null || true
    282287localedef -i ja_JP -f UTF-8 ja_JP.UTF-8
     288localedef -i nl_NL@euro -f ISO-8859-15 nl_NL@euro
    283289localedef -i ru_RU -f KOI8-R ru_RU.KOI8-R
    284290localedef -i ru_RU -f UTF-8 ru_RU.UTF-8
     291localedef -i se_NO -f UTF-8 se_NO.UTF-8
     292localedef -i ta_IN -f UTF-8 ta_IN.UTF-8
    285293localedef -i tr_TR -f UTF-8 tr_TR.UTF-8
    286294localedef -i zh_CN -f GB18030 zh_CN.GB18030
    287 localedef -i zh_HK -f BIG5-HKSCS zh_HK.BIG5-HKSCS</userinput></screen>
     295localedef -i zh_HK -f BIG5-HKSCS zh_HK.BIG5-HKSCS
     296localedef -i zh_TW -f UTF-8 zh_TW.UTF-8</userinput></screen>
    288297
    289298    <para>In addition, install the locale for your own country, language and
Note: See TracChangeset for help on using the changeset viewer.