Ignore:
Timestamp:
08/25/2022 07:24:58 AM (20 months ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
11.2, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, bdubbs/gcc13, multilib, renodr/libudev-from-systemd, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
d8c9a43f, e9d65f2f
Parents:
feed7fea
Message:

Don't use dummy.c for glibc sanity check in chap 5

It seems glibc creates dummy.c for its own use. This leaves some
dummy.xxx files in the directory, that may lead some users to think that
the directory is not properly cleaned up after the test (I did :)

So use a pipe so that only a.out is created

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/glibc.xml

    rfeed7fea rb3f157c6  
    196196      expected. To perform a sanity check, run the following commands:</para>
    197197
    198 <screen><userinput>echo 'int main(){}' &gt; dummy.c
    199 $LFS_TGT-gcc dummy.c
    200 readelf -l a.out | grep '/ld-linux'</userinput></screen>
     198<screen><userinput>echo 'int main(){}' | gcc -xc -
     199readelf -l a.out | grep ld-linux</userinput></screen>
    201200
    202201      <para>If everything is working correctly, there should be no errors,
     
    213212      continuing on.</para>
    214213
    215       <para>Once all is well, clean up the test files:</para>
    216 
    217 <screen><userinput>rm -v dummy.c a.out</userinput></screen>
     214      <para>Once all is well, clean up the test file:</para>
     215
     216<screen><userinput>rm -v a.out</userinput></screen>
    218217
    219218    </caution>
Note: See TracChangeset for help on using the changeset viewer.