Changeset f5b747c for chapter08


Ignore:
Timestamp:
08/04/2021 12:09:24 PM (3 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
ml-11.0, multilib, xry111/multilib
Children:
2dfe134
Parents:
31ff88b (diff), 4350669 (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:

Merge trunk

Location:
chapter08
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter08/bash.xml

    r31ff88b rf5b747c  
    4343    <para>Prepare Bash for compilation:</para>
    4444
    45 <screen><userinput remap="configure">./configure --prefix=/usr                    \
     45<screen><userinput remap="configure">./configure --prefix=/usr                      \
    4646            --docdir=/usr/share/doc/bash-&bash-version; \
    47             --without-bash-malloc            \
     47            --without-bash-malloc              \
    4848            --with-installed-readline</userinput></screen>
    4949
  • chapter08/glibc.xml

    r31ff88b rf5b747c  
    10971097        <term><filename class="libraryfile">libutil</filename></term>
    10981098        <listitem>
    1099           <para>>Dummy library containing no functions. Previously contained
     1099          <para>Dummy library containing no functions. Previously contained
    11001100          code for <quote>standard</quote> functions used in
    11011101          many different Unix utilities. These functions are now in
  • chapter08/strippingagain.xml

    r31ff88b rf5b747c  
    4141  rationale to use the <command>install</command> command here.</para>
    4242
     43  <note><para>The linux loader's name is ld-linux-x86-64.so.2 on 64-bit systems
     44  and ld-linux.so.2 on 32-bit systems.  The contruct below selects the
     45  correct name for the current architecture.</para></note>
     46
     47
    4348<!-- also of interest are libgfortan, libgo, libgomp, and libobjc from GCC -->
    4449
    4550<!--<screen><userinput>save_lib="ld-2.25.so libc-2.25.so libpthread-2.25.so libthread_db-1.0.so"-->
    46       <screen><userinput>save_usrlib="ld-linux-x86-64.so.2
     51      <screen><userinput>save_usrlib="$(cd /usr/lib; ls ld_linux*)
    4752             libc.so.6
    48              libpthread.so.6
    49              libthread_db.so
     53             libthread_db.so.1
    5054             libquadmath.so.&libquadmath-version;
    51              libstdc++.so.6
     55             libstdc++.so.&libstdcpp-version;
    5256             libitm.so.&libitm-version;
    5357             libatomic.so.&libatomic-version;"
     
    8488
    8589online_usrbin="bash find strip"
    86 online_usrlib="libbfd.so
    87                libdl.so.2
    88                libhistory.so
    89                libncursesw.so
    90                libm.so.6
    91                libreadline.so
    92                libz.so
     90online_usrlib="libbfd-&binutils-version;.so
     91               libhistory.so.&readline-version;
     92               libncursesw.so.&ncurses-version;
     93               libm.so.6
     94               libreadline.so.&readline-version;
     95               libz.so.&zlib-version;
    9396               $(cd /usr/lib; find libnss*.so* -type f)"
    9497
Note: See TracChangeset for help on using the changeset viewer.