fileutils-inst.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  2. <sect2>
  3. <title>Installation of Fileutils</title>
  4. <para>There is a documented bug with the atexit() function in glibc-2.2.3
  5. when it is compiled with gcc-2.95.3. This bug only occurs on some systems
  6. (primarily AMD, but not exclusively). This bug causes segmentation faults
  7. in fileutils-4.1 when it is compiled statically. This patch causes
  8. on_exit() to be called instead of atexit().</para>
  9. <para>Note that in some cases using this patch will result in not being
  10. able to compile this package at all, even when your system has an AMD CPU
  11. and has Glibc-2.2.3 (or higher) installed. If that's the case, you'll need
  12. to remove the fileutils-&fileutils-version; directory and unpack it again
  13. from the tarball before continuing. We believe this may be the case when
  14. your distribution has altered Glibc-2.2.3 somehow, but the exact details
  15. are unknown.</para>
  16. <para>To fix this package to compile properly on AMD/Glibc-2.2.3
  17. machines, run the following command. Do <emphasis>NOT</emphasis>
  18. attempt this fix if you don't have Glibc-2.2.3 installed. It will more
  19. than likely result in all kinds of compilation problems.</para>
  20. <para><screen><userinput>patch -Np1 -i ../fileutils-&fileutils-patch-version;.patch</userinput></screen></para>
  21. <para>Prepare the package to be compiled:</para>
  22. <para><screen><userinput>LDFLAGS="-static" \
  23. &nbsp;&nbsp;&nbsp;&nbsp;./configure --disable-nls --prefix=$LFS/static</userinput></screen></para>
  24. <para>Continue with compiling the package:</para>
  25. <para><screen><userinput>make</userinput></screen></para>
  26. <para>And finish off installing the package:</para>
  27. <para><screen><userinput>make install</userinput></screen></para>
  28. <para>Once you have installed Fileutils, you can test whether the
  29. segmentation fault problem has been avoided by running
  30. <userinput>$LFS/static/bin/ls</userinput>. If this works, then you are OK. If
  31. not, then you need to re-do the installation with the patch if you didn't
  32. use it, or without the patch if you did use it.</para>
  33. </sect2>