Changeset ee1a413 for chapter06/gcc.xml


Ignore:
Timestamp:
04/07/2019 09:47:30 AM (5 years ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib-10.1
Children:
a23757b
Parents:
7d9f881
Message:

Change profiling attribute to enable selection of m32 and/or mx32. Fixes #4452.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11571 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/gcc.xml

    r7d9f881 ree1a413  
    5252esac</userinput></screen>
    5353
    54     <para arch="multilib">Change the default directory name for 64-bit
     54    <para arch="ml_32,ml_x32,ml_all">Change the default directory name for 64-bit
    5555    libraries to <quote>lib</quote>:</para>
    5656
    57 <screen arch="multilib"><userinput remap="pre">sed -e '/m64=/s/lib64/lib/' \
     57<screen arch="ml_32,ml_x32,ml_all"><userinput remap="pre">sed -e '/m64=/s/lib64/lib/' \
    5858    -i.orig gcc/config/i386/t-linux64
    5959cat &gt; gcc/config/i386/t-linux64 &lt;&lt;"EOF"
     
    9191             --disable-libmpx         \
    9292             --with-system-zlib</userinput></screen>
    93 
    94 <screen arch="multilib"><userinput remap="configure">SED=sed                               \
     93<screen arch="ml_32"><userinput remap="configure">SED=sed                               \
    9594../configure --prefix=/usr                     \
    9695             --enable-languages=c,c++          \
    9796             --enable-multilib                 \
    98              --with-multilib-list=m32,m64,mx32 \
     97             --with-multilib-list=m32,m64      \
    9998             --disable-bootstrap               \
     99             --disable-libmpx                  \
     100             --with-system-zlib</userinput></screen>
     101<screen arch="ml_x32"><userinput remap="configure">SED=sed                               \
     102../configure --prefix=/usr                     \
     103             --enable-languages=c,c++          \
     104             --enable-multilib                 \
     105             --with-multilib-list=mx32,m64     \
     106             --disable-bootstrap               \
     107             --disable-libmpx                  \
     108             --with-system-zlib</userinput></screen>
     109<screen arch="ml_all"><userinput remap="configure">SED=sed                               \
     110../configure --prefix=/usr                     \
     111             --enable-languages=c,c++          \
     112             --enable-multilib                 \
     113             --with-multilib-list=m32,mx32,m64 \
     114             --disable-bootstrap               \
     115             --disable-libmpx                  \
    100116             --with-system-zlib</userinput></screen>
    101117
Note: See TracChangeset for help on using the changeset viewer.