perl.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>Perl insists on using the <command>arch</command> program to find out
  14. the machine type. Create a little script to mimick this command:</para>
  15. <screen><userinput>echo "uname -m" &gt; /tools/bin/arch
  16. chmod 755 /tools/bin/arch</userinput></screen>
  17. <para>Now prepare Perl for compilation (make sure you get the 'IO Fcntl'
  18. right, they are all letters):</para>
  19. <screen><userinput>./configure.gnu --prefix=/tools -Dstatic_ext='IO Fcntl'</userinput></screen>
  20. <para>The meaning of the configure option:</para>
  21. <itemizedlist>
  22. <listitem><para><userinput>-Dstatic_ext='IO Fcntl'</userinput>: This tells
  23. Perl to build the minimum set of static extensions needed for running the
  24. Coreutils test suite in the next chapter.</para></listitem>
  25. </itemizedlist>
  26. <para>Compile only the required tools:</para>
  27. <screen><userinput>make perl utilities</userinput></screen>
  28. <para>Then copy these tools and their libraries:</para>
  29. <screen><userinput>cp perl pod/pod2man /tools/bin
  30. mkdir -p /tools/lib/perl5/&perl-version;
  31. cp -R lib/* /tools/lib/perl5/&perl-version;</userinput></screen>
  32. </sect2>
  33. <sect2><title>&nbsp;</title><para>&nbsp;</para>
  34. <para>The details on this package are found in <xref linkend="contents-perl"/>.</para>
  35. <para>&nbsp;</para></sect2>
  36. </sect1>