Re: Debugger in beta3
[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;
6use Config;
7use Exporter;
8# mention vars twice to prevent single-use warnings
9@ExtUtils::Mksymlists::ISA = @ExtUtils::Mksymlists::ISA = 'Exporter';
10@ExtUtils::Mksymlists::EXPORT = @ExtUtils::Mksymlists::EXPORT = '&Mksymlists';
11$ExtUtils::Mksymlists::VERSION = $ExtUtils::Mksymlists::VERSION = '1.00';
12
13sub Mksymlists {
14 my(%spec) = @_;
15 my($osname) = $Config{'osname'};
16
17 croak("Insufficient information specified to Mksymlists")
18 unless ( $spec{NAME} or
19 ($spec{FILE} and ($spec{DL_FUNCS} or $spec{FUNCLIST})) );
20
21 $spec{DL_VARS} = [] unless $spec{DL_VARS};
22 ($spec{FILE} = $spec{NAME}) =~ s/.*::// unless $spec{FILE};
23 $spec{DL_FUNCS} = { $spec{NAME} => [] }
24 unless ( ($spec{DL_FUNCS} and keys %{$spec{DL_FUNCS}}) or
25 $spec{FUNCLIST});
26 $spec{FUNCLIST} = [] unless $spec{FUNCLIST};
27 if (defined $spec{DL_FUNCS}) {
28 my($package);
29 foreach $package (keys %{$spec{DL_FUNCS}}) {
30 my($packprefix,$sym,$bootseen);
31 ($packprefix = $package) =~ s/\W/_/g;
32 foreach $sym (@{$spec{DL_FUNCS}->{$package}}) {
33 if ($sym =~ /^boot_/) {
34 push(@{$spec{FUNCLIST}},$sym);
35 $bootseen++;
36 }
37 else { push(@{$spec{FUNCLIST}},"XS_${packprefix}_$sym"); }
38 }
39 push(@{$spec{FUNCLIST}},"boot_$packprefix") unless $bootseen;
40 }
41 }
42
43# We'll need this if we ever add any OS which uses mod2fname
44# require DynaLoader;
c2e89b3d 45 if (defined &DynaLoader::mod2fname and not $spec{DLBASE}) {
46 $spec{DLBASE} = DynaLoader::mod2fname([ split(/::/,$spec{NAME}) ]);
47 }
c07a80fd 48
49 if ($osname eq 'aix') { _write_aix(\%spec); }
50 elsif ($osname eq 'VMS') { _write_vms(\%spec) }
c2e89b3d 51 elsif ($osname =~ m|^os/?2$|i) { _write_os2(\%spec) }
c07a80fd 52 else { croak("Don't know how to create linker option file for $osname\n"); }
53}
54
55
56sub _write_aix {
57 my($data) = @_;
58
59 rename "$data->{FILE}.exp", "$data->{FILE}.exp_old";
60
61 open(EXP,">$data->{FILE}.exp")
62 or croak("Can't create $data->{FILE}.exp: $!\n");
63 print EXP join("\n",@{$data->{DL_VARS}}, "\n") if @{$data->{DL_VARS}};
64 print EXP join("\n",@{$data->{FUNCLIST}}, "\n") if @{$data->{FUNCLIST}};
65 close EXP;
66}
67
68
69sub _write_os2 {
70 my($data) = @_;
71
72 if (not $data->{DLBASE}) {
73 ($data->{DLBASE} = $data->{NAME}) =~ s/.*:://;
74 $data->{DLBASE} = substr($data->{DLBASE},0,7) . '_';
75 }
76 rename "$data->{FILE}.def", "$data->{FILE}_def.old";
77
78 open(DEF,">$data->{FILE}.def")
79 or croak("Can't create $data->{FILE}.def: $!\n");
80 print DEF "LIBRARY '$data->{DLBASE}' INITINSTANCE TERMINSTANCE\n";
81 print DEF "CODE LOADONCALL\n";
82 print DEF "DATA LOADONCALL NONSHARED MULTIPLE\n";
c2e89b3d 83 print DEF "EXPORTS\n ";
84 print DEF join("\n ",@{$data->{DL_VARS}}, "\n") if @{$data->{DL_VARS}};
85 print DEF join("\n ",@{$data->{FUNCLIST}}, "\n") if @{$data->{FUNCLIST}};
86 if (%{$data->{IMPORTS}}) {
87 print DEF "IMPORTS\n";
88my ($name, $exp);
89while (($name, $exp)= each %{$data->{IMPORTS}}) {
90 print DEF " $name=$exp\n";
91}
92 }
c07a80fd 93 close DEF;
94}
95
96
97sub _write_vms {
98 my($data) = @_;
99 my($isvax) = $Config{'arch'} =~ /VAX/i;
100 my($sym);
101
102 rename "$data->{FILE}.opt", "$data->{FILE}.opt_old";
103
104 open(OPT,">$data->{FILE}.opt")
105 or croak("Can't create $data->{FILE}.opt: $!\n");
106
107 # Options file declaring universal symbols
108 # Used when linking shareable image for dynamic extension,
109 # or when linking PerlShr into which we've added this package
110 # as a static extension
111 # We don't do anything to preserve order, so we won't relax
112 # the GSMATCH criteria for a dynamic extension
113
114 foreach $sym (@{$data->{FUNCLIST}}) {
115 if ($isvax) { print OPT "UNIVERSAL=$sym\n" }
116 else { print OPT "SYMBOL_VECTOR=($sym=PROCEDURE)\n"; }
117 }
118 foreach $sym (@{$data->{DL_VARS}}) {
119 print OPT "PSECT_ATTR=${sym},PIC,OVR,RD,NOEXE,WRT,NOSHR\n";
120 if ($isvax) { print OPT "UNIVERSAL=$sym\n" }
121 else { print OPT "SYMBOL_VECTOR=($sym=DATA)\n"; }
122 }
123 close OPT;
124
125 # Options file specifying RTLs to which this extension must be linked.
126 # Eventually, the list of libraries will be supplied by a working
127 # extliblist routine.
128 open OPT,'>rtls.opt';
129 print OPT "PerlShr/Share\n";
130 foreach $rtl (split(/\s+/,$Config{'libs'})) { print OPT "$rtl\n"; }
131 close OPT;
132}
133
1341;
135
136__END__
137
138=head1 NAME
139
140ExtUtils::Mksymlists - write linker options files for dynamic extension
141
142=head1 SYNOPSIS
143
144 use ExtUtils::Mksymlists;
145 Mksymlists({ NAME => $name ,
146 DL_VARS => [ $var1, $var2, $var3 ],
147 DL_FUNCS => { $pkg1 => [ $func1, $func2 ],
148 $pkg2 => [ $func3 ] });
149
150=head1 DESCRIPTION
151
152C<ExtUtils::Mksymlists> produces files used by the linker under some OSs
153during the creation of shared libraries for synamic extensions. It is
154normally called from a MakeMaker-generated Makefile when the extension
155is built. The linker option file is generated by calling the function
156C<Mksymlists>, which is exported by default from C<ExtUtils::Mksymlists>.
157It takes one argument, a list of key-value pairs, in which the following
158keys are recognized:
159
160=item NAME
161
162This gives the name of the extension (I<e.g.> Tk::Canvas) for which
163the linker option file will be produced.
164
165=item DL_FUNCS
166
167This is identical to the DL_FUNCS attribute available via MakeMaker,
168from which it is usually taken. Its value is a reference to an
169associative array, in which each key is the name of a package, and
170each value is an a reference to an array of function names which
171should be exported by the extension. For instance, one might say
c2e89b3d 172C<DL_FUNCS => { Homer::Iliad => [ qw(trojans greeks) ],
173Homer::Odyssey => [ qw(travellers family suitors) ] }>. The
c07a80fd 174function names should be identical to those in the XSUB code;
175C<Mksymlists> will alter the names written to the linker option
176file to match the changes made by F<xsubpp>. In addition, if
177none of the functions in a list begin with the string B<boot_>,
178C<Mksymlists> will add a bootstrap function for that package,
179just as xsubpp does. (If a B<boot_E<lt>pkgE<gt>> function is
180present in the list, it is passed through unchanged.) If
181DL_FUNCS is not specified, it defaults to the bootstrap
182function for the extension specified in NAME.
183
184=item DL_VARS
185
186This is identical to the DL_VARS attribute available via MakeMaker,
187and, like DL_FUNCS, it is usually specified via MakeMaker. Its
188value is a reference to an array of variable names which should
189be exported by the extension.
190
191=item FILE
192
193This key can be used to specify the name of the linker option file
194(minus the OS-specific extension), if for some reason you do not
195want to use the default value, which is the last word of the NAME
196attribute (I<e.g.> for Tk::Canvas, FILE defaults to 'Canvas').
197
198=item FUNCLIST
199
200This provides an alternate means to specify function names to be
201exported from the extension. Its value is a reference to an
202array of function names to be exported by the extension. These
203names are passed through unaltered to the linker options file.
204
205=item DLBASE
206
207This item specifies the name by which the linker knows the
208extension, which may be different from the name of the
209extension itself (for instance, some linkers add an '_' to the
210name of the extension). If it is not specified, it is derived
211from the NAME attribute. It is presently used only by OS2.
212
213When calling C<Mksymlists>, one should always specify the NAME
214attribute. In most cases, this is all that's necessary. In
215the case of unusual extensions, however, the other attributes
216can be used to provide additional information to the linker.
217
218=head1 AUTHOR
219
220Charles Bailey I<E<lt>bailey@genetics.upenn.eduE<gt>>
221
222=head1 REVISION
223
224Last revised 14-Jan-1996, for Perl 5.002.