add newer malloc.c from Ilya Zakharevich <ilya@math.ohio-state.edu>
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / Mksymlists.pm
CommitLineData
c07a80fd 1package ExtUtils::Mksymlists;
2use strict qw[ subs refs ];
3# no strict 'vars'; # until filehandles are exempted
4
5use Carp;
c07a80fd 6use Exporter;
f1387719 7use vars qw( @ISA @EXPORT $VERSION );
8@ISA = 'Exporter';
9@EXPORT = '&Mksymlists';
6ee623d5 10$VERSION = substr q$Revision: 1.17 $, 10;
c07a80fd 11
12sub Mksymlists {
13 my(%spec) = @_;
f1387719 14 my($osname) = $^O;
c07a80fd 15
16 croak("Insufficient information specified to Mksymlists")
17 unless ( $spec{NAME} or
18 ($spec{FILE} and ($spec{DL_FUNCS} or $spec{FUNCLIST})) );
19
20 $spec{DL_VARS} = [] unless $spec{DL_VARS};
21 ($spec{FILE} = $spec{NAME}) =~ s/.*::// unless $spec{FILE};
22 $spec{DL_FUNCS} = { $spec{NAME} => [] }
23 unless ( ($spec{DL_FUNCS} and keys %{$spec{DL_FUNCS}}) or
24 $spec{FUNCLIST});
25 $spec{FUNCLIST} = [] unless $spec{FUNCLIST};
26 if (defined $spec{DL_FUNCS}) {
27 my($package);
28 foreach $package (keys %{$spec{DL_FUNCS}}) {
29 my($packprefix,$sym,$bootseen);
30 ($packprefix = $package) =~ s/\W/_/g;
31 foreach $sym (@{$spec{DL_FUNCS}->{$package}}) {
32 if ($sym =~ /^boot_/) {
33 push(@{$spec{FUNCLIST}},$sym);
34 $bootseen++;
35 }
36 else { push(@{$spec{FUNCLIST}},"XS_${packprefix}_$sym"); }
37 }
38 push(@{$spec{FUNCLIST}},"boot_$packprefix") unless $bootseen;
39 }
40 }
41
42# We'll need this if we ever add any OS which uses mod2fname
760ac839 43# not as pseudo-builtin.
c07a80fd 44# require DynaLoader;
c2e89b3d 45 if (defined &DynaLoader::mod2fname and not $spec{DLBASE}) {
46 $spec{DLBASE} = DynaLoader::mod2fname([ split(/::/,$spec{NAME}) ]);
47 }
c07a80fd 48
f1387719 49 if ($osname eq 'aix') { _write_aix(\%spec); }
50 elsif ($osname eq 'VMS') { _write_vms(\%spec) }
bab2b58e 51 elsif ($osname eq 'os2') { _write_os2(\%spec) }
68dc0745 52 elsif ($osname eq 'MSWin32') { _write_win32(\%spec) }
f1387719 53 else { croak("Don't know how to create linker option file for $osname\n"); }
c07a80fd 54}
55
56
57sub _write_aix {
58 my($data) = @_;
59
60 rename "$data->{FILE}.exp", "$data->{FILE}.exp_old";
61
62 open(EXP,">$data->{FILE}.exp")
63 or croak("Can't create $data->{FILE}.exp: $!\n");
64 print EXP join("\n",@{$data->{DL_VARS}}, "\n") if @{$data->{DL_VARS}};
65 print EXP join("\n",@{$data->{FUNCLIST}}, "\n") if @{$data->{FUNCLIST}};
66 close EXP;
67}
68
69
70sub _write_os2 {
71 my($data) = @_;
6ee623d5 72 require Config;
73 my $threaded = ($Config::Config{archname} =~ /-thread/ ? " threaded" : "");
c07a80fd 74
75 if (not $data->{DLBASE}) {
76 ($data->{DLBASE} = $data->{NAME}) =~ s/.*:://;
77 $data->{DLBASE} = substr($data->{DLBASE},0,7) . '_';
78 }
79 rename "$data->{FILE}.def", "$data->{FILE}_def.old";
80
81 open(DEF,">$data->{FILE}.def")
82 or croak("Can't create $data->{FILE}.def: $!\n");
83 print DEF "LIBRARY '$data->{DLBASE}' INITINSTANCE TERMINSTANCE\n";
6ee623d5 84 print DEF "DESCRIPTION 'Perl (v$]$threaded) module $data->{NAME} v$data->{VERSION}'\n";
c07a80fd 85 print DEF "CODE LOADONCALL\n";
86 print DEF "DATA LOADONCALL NONSHARED MULTIPLE\n";
c2e89b3d 87 print DEF "EXPORTS\n ";
88 print DEF join("\n ",@{$data->{DL_VARS}}, "\n") if @{$data->{DL_VARS}};
89 print DEF join("\n ",@{$data->{FUNCLIST}}, "\n") if @{$data->{FUNCLIST}};
90 if (%{$data->{IMPORTS}}) {
91 print DEF "IMPORTS\n";
92my ($name, $exp);
93while (($name, $exp)= each %{$data->{IMPORTS}}) {
94 print DEF " $name=$exp\n";
95}
96 }
c07a80fd 97 close DEF;
98}
99
68dc0745 100sub _write_win32 {
101 my($data) = @_;
102
3e3baf6d 103 require Config;
68dc0745 104 if (not $data->{DLBASE}) {
105 ($data->{DLBASE} = $data->{NAME}) =~ s/.*:://;
106 $data->{DLBASE} = substr($data->{DLBASE},0,7) . '_';
107 }
108 rename "$data->{FILE}.def", "$data->{FILE}_def.old";
109
110 open(DEF,">$data->{FILE}.def")
111 or croak("Can't create $data->{FILE}.def: $!\n");
84902520 112 # put library name in quotes (it could be a keyword, like 'Alias')
5b0d9cbe 113 if ($Config::Config{'cc'} !~ /^gcc/i) {
114 print DEF "LIBRARY \"$data->{DLBASE}\"\n";
01f988be 115 if ($Config{'ccflags'} !~ /PERL_OBJECT/i) {
116 print DEF "CODE LOADONCALL\n";
117 print DEF "DATA LOADONCALL NONSHARED MULTIPLE\n";
118 }
5b0d9cbe 119 }
68dc0745 120 print DEF "EXPORTS\n ";
84902520 121 my @syms;
122 # Export public symbols both with and without underscores to
123 # ensure compatibility between DLLs from different compilers
124 # NOTE: DynaLoader itself only uses the names without underscores,
125 # so this is only to cover the case when the extension DLL may be
126 # linked to directly from C. GSAR 97-07-10
3e3baf6d 127 if ($Config::Config{'cc'} =~ /^bcc/i) {
84902520 128 for (@{$data->{DL_VARS}}, @{$data->{FUNCLIST}}) {
129 push @syms, "_$_", "$_ = _$_";
130 }
3e3baf6d 131 }
84902520 132 else {
133 for (@{$data->{DL_VARS}}, @{$data->{FUNCLIST}}) {
134 push @syms, "$_", "_$_ = $_";
135 }
136 }
137 print DEF join("\n ",@syms, "\n") if @syms;
68dc0745 138 if (%{$data->{IMPORTS}}) {
139 print DEF "IMPORTS\n";
140 my ($name, $exp);
141 while (($name, $exp)= each %{$data->{IMPORTS}}) {
142 print DEF " $name=$exp\n";
143 }
144 }
145 close DEF;
146}
147
c07a80fd 148
149sub _write_vms {
150 my($data) = @_;
a6e61155 151
f1387719 152 require Config; # a reminder for once we do $^O
ff0cee69 153 require ExtUtils::XSSymSet;
a6e61155 154
155 my($isvax) = $Config::Config{'arch'} =~ /VAX/i;
ff0cee69 156 my($set) = new ExtUtils::XSSymSet;
c07a80fd 157 my($sym);
158
159 rename "$data->{FILE}.opt", "$data->{FILE}.opt_old";
160
161 open(OPT,">$data->{FILE}.opt")
162 or croak("Can't create $data->{FILE}.opt: $!\n");
163
164 # Options file declaring universal symbols
165 # Used when linking shareable image for dynamic extension,
166 # or when linking PerlShr into which we've added this package
167 # as a static extension
168 # We don't do anything to preserve order, so we won't relax
169 # the GSMATCH criteria for a dynamic extension
170
171 foreach $sym (@{$data->{FUNCLIST}}) {
ff0cee69 172 my $safe = $set->addsym($sym);
173 if ($isvax) { print OPT "UNIVERSAL=$safe\n" }
174 else { print OPT "SYMBOL_VECTOR=($safe=PROCEDURE)\n"; }
c07a80fd 175 }
176 foreach $sym (@{$data->{DL_VARS}}) {
ff0cee69 177 my $safe = $set->addsym($sym);
c07a80fd 178 print OPT "PSECT_ATTR=${sym},PIC,OVR,RD,NOEXE,WRT,NOSHR\n";
ff0cee69 179 if ($isvax) { print OPT "UNIVERSAL=$safe\n" }
180 else { print OPT "SYMBOL_VECTOR=($safe=DATA)\n"; }
c07a80fd 181 }
182 close OPT;
183
c07a80fd 184}
185
1861;
187
188__END__
189
190=head1 NAME
191
192ExtUtils::Mksymlists - write linker options files for dynamic extension
193
194=head1 SYNOPSIS
195
196 use ExtUtils::Mksymlists;
197 Mksymlists({ NAME => $name ,
198 DL_VARS => [ $var1, $var2, $var3 ],
199 DL_FUNCS => { $pkg1 => [ $func1, $func2 ],
200 $pkg2 => [ $func3 ] });
201
202=head1 DESCRIPTION
203
204C<ExtUtils::Mksymlists> produces files used by the linker under some OSs
1fef88e7 205during the creation of shared libraries for dynamic extensions. It is
c07a80fd 206normally called from a MakeMaker-generated Makefile when the extension
207is built. The linker option file is generated by calling the function
208C<Mksymlists>, which is exported by default from C<ExtUtils::Mksymlists>.
209It takes one argument, a list of key-value pairs, in which the following
210keys are recognized:
211
2ae324a7 212=over
213
c07a80fd 214=item NAME
215
216This gives the name of the extension (I<e.g.> Tk::Canvas) for which
217the linker option file will be produced.
218
219=item DL_FUNCS
220
221This is identical to the DL_FUNCS attribute available via MakeMaker,
222from which it is usually taken. Its value is a reference to an
223associative array, in which each key is the name of a package, and
224each value is an a reference to an array of function names which
225should be exported by the extension. For instance, one might say
a5f75d66 226C<DL_FUNCS =E<gt> { Homer::Iliad =E<gt> [ qw(trojans greeks) ],
227Homer::Odyssey =E<gt> [ qw(travellers family suitors) ] }>. The
c07a80fd 228function names should be identical to those in the XSUB code;
229C<Mksymlists> will alter the names written to the linker option
230file to match the changes made by F<xsubpp>. In addition, if
231none of the functions in a list begin with the string B<boot_>,
232C<Mksymlists> will add a bootstrap function for that package,
233just as xsubpp does. (If a B<boot_E<lt>pkgE<gt>> function is
234present in the list, it is passed through unchanged.) If
235DL_FUNCS is not specified, it defaults to the bootstrap
236function for the extension specified in NAME.
237
238=item DL_VARS
239
240This is identical to the DL_VARS attribute available via MakeMaker,
241and, like DL_FUNCS, it is usually specified via MakeMaker. Its
242value is a reference to an array of variable names which should
243be exported by the extension.
244
245=item FILE
246
247This key can be used to specify the name of the linker option file
248(minus the OS-specific extension), if for some reason you do not
249want to use the default value, which is the last word of the NAME
250attribute (I<e.g.> for Tk::Canvas, FILE defaults to 'Canvas').
251
252=item FUNCLIST
253
254This provides an alternate means to specify function names to be
255exported from the extension. Its value is a reference to an
256array of function names to be exported by the extension. These
257names are passed through unaltered to the linker options file.
258
259=item DLBASE
260
261This item specifies the name by which the linker knows the
262extension, which may be different from the name of the
263extension itself (for instance, some linkers add an '_' to the
264name of the extension). If it is not specified, it is derived
265from the NAME attribute. It is presently used only by OS2.
266
2ae324a7 267=back
268
c07a80fd 269When calling C<Mksymlists>, one should always specify the NAME
270attribute. In most cases, this is all that's necessary. In
271the case of unusual extensions, however, the other attributes
272can be used to provide additional information to the linker.
273
274=head1 AUTHOR
275
276Charles Bailey I<E<lt>bailey@genetics.upenn.eduE<gt>>
277
278=head1 REVISION
279
a5f75d66 280Last revised 14-Feb-1996, for Perl 5.002.