perl.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <sect1 id="ch-tools-perl">
  2. <title>Installing Perl-&perl-version;</title>
  3. <?dbhtml filename="perl.html" dir="chapter05"?>
  4. <screen>&buildtime; &perl-time-tools;
  5. &diskspace; &perl-compsize-tools;</screen>
  6. &aa-perl-down;
  7. &aa-perl-dep;
  8. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  9. <sect2>
  10. <title>Installation of Perl</title>
  11. <para>First adapt some hard-wired paths to the C library:</para>
  12. <screen><userinput>patch -Np1 -i ../&perl-libc-patch;</userinput></screen>
  13. <para>Now prepare Perl for compilation:</para>
  14. <screen><userinput>./configure.gnu --prefix=/tools -Dstatic_ext='IO Fcntl'</userinput></screen>
  15. <para>The meaning of the configure option:</para>
  16. <itemizedlist>
  17. <listitem><para><userinput>-Dstatic_ext='IO Fcntl'</userinput>: This tells
  18. Perl to build the minimum set of static extensions needed for running the
  19. Coreutils test suite in the next chapter.</para></listitem>
  20. </itemizedlist>
  21. <para>Compile only the required tools:</para>
  22. <screen><userinput>make perl utilities</userinput></screen>
  23. <para>Then copy these tools and their libraries:</para>
  24. <screen><userinput>cp perl pod/pod2man /tools/bin
  25. mkdir -p /tools/lib/perl5/&perl-version;
  26. cp -R lib/* /tools/lib/perl5/&perl-version;</userinput></screen>
  27. </sect2>
  28. <sect2><title>&nbsp;</title><para>&nbsp;</para>
  29. <para>The details on this package are found in <xref linkend="contents-perl"/>.</para>
  30. <para>&nbsp;</para></sect2>
  31. </sect1>