home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _2a916d1f7c0aa65147bbb60833274478 < prev    next >
Text File  |  2000-03-23  |  6KB  |  148 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>ExtUtils::Mksymlists - write linker options files for dynamic extension</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> ExtUtils::Mksymlists - write linker options files for dynamic extension</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#author">AUTHOR</A></LI>
  26.     <LI><A HREF="#revision">REVISION</A></LI>
  27. </UL>
  28. <!-- INDEX END -->
  29.  
  30. <HR>
  31. <P>
  32. <H1><A NAME="name">NAME</A></H1>
  33. <P>ExtUtils::Mksymlists - write linker options files for dynamic extension</P>
  34. <P>
  35. <HR>
  36. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  37. <UL>
  38. <LI>Linux</LI>
  39. <LI>Solaris</LI>
  40. <LI>Windows</LI>
  41. </UL>
  42. <HR>
  43. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  44. <PRE>
  45.     use ExtUtils::Mksymlists;
  46.     Mksymlists({ NAME     => $name ,
  47.                  DL_VARS  => [ $var1, $var2, $var3 ],
  48.                  DL_FUNCS => { $pkg1 => [ $func1, $func2 ],
  49.                                $pkg2 => [ $func3 ] });</PRE>
  50. <P>
  51. <HR>
  52. <H1><A NAME="description">DESCRIPTION</A></H1>
  53. <P><CODE>ExtUtils::Mksymlists</CODE> produces files used by the linker under some OSs
  54. during the creation of shared libraries for dynamic extensions.  It is
  55. normally called from a MakeMaker-generated Makefile when the extension
  56. is built.  The linker option file is generated by calling the function
  57. <CODE>Mksymlists</CODE>, which is exported by default from <CODE>ExtUtils::Mksymlists</CODE>.
  58. It takes one argument, a list of key-value pairs, in which the following
  59. keys are recognized:</P>
  60. <DL>
  61. <DT><STRONG><A NAME="item_DLBASE">DLBASE</A></STRONG><BR>
  62. <DD>
  63. This item specifies the name by which the linker knows the
  64. extension, which may be different from the name of the
  65. extension itself (for instance, some linkers add an '_' to the
  66. name of the extension).  If it is not specified, it is derived
  67. from the NAME attribute.  It is presently used only by OS2 and Win32.
  68. <P></P>
  69. <DT><STRONG><A NAME="item_DL_FUNCS">DL_FUNCS</A></STRONG><BR>
  70. <DD>
  71. This is identical to the DL_FUNCS attribute available via MakeMaker,
  72. from which it is usually taken.  Its value is a reference to an
  73. associative array, in which each key is the name of a package, and
  74. each value is an a reference to an array of function names which
  75. should be exported by the extension.  For instance, one might say
  76. <A HREF="../../lib/Pod/perlfunc.html#item_qw"><CODE>DL_FUNCS => { Homer::Iliad => [ qw(trojans greeks) ],
  77. Homer::Odyssey =E<gt> [ qw(travellers family suitors) ] }</CODE></A>.  The
  78. function names should be identical to those in the XSUB code;
  79. <CODE>Mksymlists</CODE> will alter the names written to the linker option
  80. file to match the changes made by <EM>xsubpp</EM>.  In addition, if
  81. none of the functions in a list begin with the string <STRONG>boot_</STRONG>,
  82. <CODE>Mksymlists</CODE> will add a bootstrap function for that package,
  83. just as xsubpp does.  (If a <STRONG>boot_<pkg></STRONG> function is
  84. present in the list, it is passed through unchanged.)  If
  85. DL_FUNCS is not specified, it defaults to the bootstrap
  86. function for the extension specified in NAME.
  87. <P></P>
  88. <DT><STRONG><A NAME="item_DL_VARS">DL_VARS</A></STRONG><BR>
  89. <DD>
  90. This is identical to the DL_VARS attribute available via MakeMaker,
  91. and, like DL_FUNCS, it is usually specified via MakeMaker.  Its
  92. value is a reference to an array of variable names which should
  93. be exported by the extension.
  94. <P></P>
  95. <DT><STRONG><A NAME="item_FILE">FILE</A></STRONG><BR>
  96. <DD>
  97. This key can be used to specify the name of the linker option file
  98. (minus the OS-specific extension), if for some reason you do not
  99. want to use the default value, which is the last word of the NAME
  100. attribute (<EM>e.g.</EM> for <CODE>Tk::Canvas</CODE>, FILE defaults to <CODE>Canvas</CODE>).
  101. <P></P>
  102. <DT><STRONG><A NAME="item_FUNCLIST">FUNCLIST</A></STRONG><BR>
  103. <DD>
  104. This provides an alternate means to specify function names to be
  105. exported from the extension.  Its value is a reference to an
  106. array of function names to be exported by the extension.  These
  107. names are passed through unaltered to the linker options file.
  108. Specifying a value for the FUNCLIST attribute suppresses automatic
  109. generation of the bootstrap function for the package. To still create
  110. the bootstrap name you have to specify the package name in the
  111. DL_FUNCS hash:
  112. <PRE>
  113.     Mksymlists({ NAME     => $name ,
  114.                  FUNCLIST => [ $func1, $func2 ],
  115.                  DL_FUNCS => { $pkg => [] } });</PRE>
  116. <P></P>
  117. <DT><STRONG><A NAME="item_IMPORTS">IMPORTS</A></STRONG><BR>
  118. <DD>
  119. This attribute is used to specify names to be imported into the
  120. extension. It is currently only used by OS/2 and Win32.
  121. <P></P>
  122. <DT><STRONG><A NAME="item_NAME">NAME</A></STRONG><BR>
  123. <DD>
  124. This gives the name of the extension (<EM>e.g.</EM> <CODE>Tk::Canvas</CODE>) for which
  125. the linker option file will be produced.
  126. <P></P></DL>
  127. <P>When calling <CODE>Mksymlists</CODE>, one should always specify the NAME
  128. attribute.  In most cases, this is all that's necessary.  In
  129. the case of unusual extensions, however, the other attributes
  130. can be used to provide additional information to the linker.</P>
  131. <P>
  132. <HR>
  133. <H1><A NAME="author">AUTHOR</A></H1>
  134. <P>Charles Bailey <EM><<A HREF="mailto:bailey@newman.upenn.edu">bailey@newman.upenn.edu</A>></EM></P>
  135. <P>
  136. <HR>
  137. <H1><A NAME="revision">REVISION</A></H1>
  138. <P>Last revised 14-Feb-1996, for Perl 5.002.</P>
  139. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  140. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  141. <STRONG><P CLASS=block> ExtUtils::Mksymlists - write linker options files for dynamic extension</P></STRONG>
  142. </TD></TR>
  143. </TABLE>
  144.  
  145. </BODY>
  146.  
  147. </HTML>
  148.