Ignore:
Timestamp:
04/28/2013 09:11:44 PM (11 years ago)
Author:
Matthew Burgess <matthew@…>
Branches:
7.5-systemd, 7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
3b60741
Parents:
1026c1ee
Message:

Sync with latest trunk updates

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/gcc-pass2.xml

    r1026c1ee r50420218  
    9898mv -v mpc-&mpc-version; mpc</userinput></screen>
    9999
    100     <para>Again, do not build the .info files.  They are not needed here and
    101     are broken with the current version of <command>makeinfo</command>.</para>
    102 
    103     <screen><userinput remap="pre">sed -i 's/BUILD_INFO=info/BUILD_INFO=/' gcc/configure</userinput></screen>
    104 
    105100    <para>Create a separate build directory again:</para>
    106101
     
    113108    <para>Now prepare GCC for compilation:</para>
    114109
    115 <screen><userinput remap="configure">CC=$LFS_TGT-gcc \
    116 AR=$LFS_TGT-ar                  \
    117 RANLIB=$LFS_TGT-ranlib          \
    118 ../gcc-&gcc-version;/configure          \
    119     --prefix=/tools             \
    120     --with-local-prefix=/tools  \
    121     --with-native-system-header-dir=/tools/include \
    122     --enable-clocale=gnu        \
    123     --enable-shared             \
    124     --enable-threads=posix      \
    125     --enable-__cxa_atexit       \
    126     --enable-languages=c,c++    \
    127     --disable-libstdcxx-pch     \
    128     --disable-multilib          \
    129     --disable-bootstrap         \
    130     --disable-libgomp           \
     110<screen><userinput remap="configure">
     111CC=$LFS_TGT-gcc                                      \
     112CXX=$LFS_TGT-g++                                     \
     113AR=$LFS_TGT-ar                                       \
     114RANLIB=$LFS_TGT-ranlib                               \
     115../gcc-&gcc-version;/configure                               \
     116    --prefix=/tools                                  \
     117    --with-local-prefix=/tools                       \
     118    --with-native-system-header-dir=/tools/include   \
     119    --enable-clocale=gnu                             \
     120    --enable-shared                                  \
     121    --enable-threads=posix                           \
     122    --enable-__cxa_atexit                            \
     123    --enable-languages=c,c++                         \
     124    --disable-libstdcxx-pch                          \
     125    --disable-multilib                               \
     126    --disable-bootstrap                              \
     127    --disable-libgomp                                \
    131128    --with-mpfr-include=$(pwd)/../gcc-&gcc-version;/mpfr/src \
    132129    --with-mpfr-lib=$(pwd)/mpfr/src/.libs</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.