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