This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
U/WIN: final (for now) touches from John P. Linderman;
[perl5.git] / lib / ExtUtils / MM_Win32.pm
CommitLineData
68dc0745 1package ExtUtils::MM_Win32;
2
479d2113
MS
3use strict;
4
b75c8c73 5
68dc0745 6=head1 NAME
7
8ExtUtils::MM_Win32 - methods to override UN*X behaviour in ExtUtils::MakeMaker
9
10=head1 SYNOPSIS
11
12 use ExtUtils::MM_Win32; # Done internally by ExtUtils::MakeMaker if needed
13
14=head1 DESCRIPTION
15
16See ExtUtils::MM_Unix for a documentation of the methods provided
17there. This package overrides the implementation of these methods, not
18the semantics.
19
68dc0745 20=cut
21
3e3baf6d 22use Config;
68dc0745 23use File::Basename;
ecf68df6 24use File::Spec;
f6d6199c 25use ExtUtils::MakeMaker qw( neatvalue );
68dc0745 26
479d2113 27use vars qw(@ISA $VERSION $BORLAND $GCC $DMAKE $NMAKE);
f6d6199c
MS
28
29require ExtUtils::MM_Any;
30require ExtUtils::MM_Unix;
31@ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
dedf98bc 32$VERSION = '1.07';
68dc0745 33
34$ENV{EMXSHELL} = 'sh'; # to run `commands`
68dc0745 35
3e3baf6d 36$BORLAND = 1 if $Config{'cc'} =~ /^bcc/i;
5b0d9cbe 37$GCC = 1 if $Config{'cc'} =~ /^gcc/i;
3e3baf6d
TB
38$DMAKE = 1 if $Config{'make'} =~ /^dmake/i;
39$NMAKE = 1 if $Config{'make'} =~ /^nmake/i;
479d2113
MS
40
41
42=head2 Overridden methods
43
44=over 4
45
46=item B<dlsyms>
47
48=cut
3e3baf6d 49
68dc0745 50sub dlsyms {
51 my($self,%attribs) = @_;
52
53 my($funcs) = $attribs{DL_FUNCS} || $self->{DL_FUNCS} || {};
54 my($vars) = $attribs{DL_VARS} || $self->{DL_VARS} || [];
762efda7 55 my($funclist) = $attribs{FUNCLIST} || $self->{FUNCLIST} || [];
68dc0745 56 my($imports) = $attribs{IMPORTS} || $self->{IMPORTS} || {};
57 my(@m);
68dc0745 58
59 if (not $self->{SKIPHASH}{'dynamic'}) {
60 push(@m,"
61$self->{BASEEXT}.def: Makefile.PL
62",
f6d6199c 63 q! $(PERLRUN) -MExtUtils::Mksymlists \\
5e687e55
NK
64 -e "Mksymlists('NAME'=>\"!, $self->{NAME},
65 q!\", 'DLBASE' => '!,$self->{DLBASE},
66 # The above two lines quoted differently to work around
67 # a bug in the 4DOS/4NT command line interpreter. The visible
68 # result of the bug was files named q('extension_name',) *with the
69 # single quotes and the comma* in the extension build directories.
68dc0745 70 q!', 'DL_FUNCS' => !,neatvalue($funcs),
762efda7 71 q!, 'FUNCLIST' => !,neatvalue($funclist),
68dc0745 72 q!, 'IMPORTS' => !,neatvalue($imports),
73 q!, 'DL_VARS' => !, neatvalue($vars), q!);"
74!);
75 }
76 join('',@m);
77}
78
479d2113
MS
79=item replace_manpage_separator
80
81Changes the path separator with .
82
83=cut
84
68dc0745 85sub replace_manpage_separator {
86 my($self,$man) = @_;
87 $man =~ s,/+,.,g;
88 $man;
89}
90
479d2113
MS
91
92=item B<maybe_command>
93
94Since Windows has nothing as simple as an executable bit, we check the
95file extension.
96
97The PATHEXT env variable will be used to get a list of extensions that
98might indicate a command, otherwise .com, .exe, .bat and .cmd will be
99used by default.
100
101=cut
102
68dc0745 103sub maybe_command {
104 my($self,$file) = @_;
846f184a
GS
105 my @e = exists($ENV{'PATHEXT'})
106 ? split(/;/, $ENV{PATHEXT})
107 : qw(.com .exe .bat .cmd);
108 my $e = '';
109 for (@e) { $e .= "\Q$_\E|" }
110 chop $e;
111 # see if file ends in one of the known extensions
2b2708c8 112 if ($file =~ /($e)$/i) {
846f184a
GS
113 return $file if -e $file;
114 }
115 else {
116 for (@e) {
117 return "$file$_" if -e "$file$_";
118 }
119 }
68dc0745 120 return;
121}
122
68dc0745 123
479d2113 124=item B<find_tests>
39234879 125
479d2113
MS
126The Win9x shell does not expand globs and I'll play it safe and assume
127other Windows variants don't either.
128
129So we do it for them.
68dc0745 130
479d2113 131=cut
45bc4d3a 132
45bc4d3a
JH
133sub find_tests {
134 return join(' ', <t\\*.t>);
135}
136
137
479d2113
MS
138=item B<init_DIRFILESEP>
139
140Using \ for Windows.
141
142=cut
143
144sub init_DIRFILESEP {
145 my($self) = shift;
146
dedf98bc
MS
147 # The ^ makes sure its not interpreted as an escape in nmake
148 $self->{DIRFILESEP} = $NMAKE ? '^\\' :
149 $DMAKE ? '\\\\'
150 : '\\';
68dc0745 151}
152
479d2113
MS
153=item B<init_others>
154
155Override some of the Unix specific commands with portable
156ExtUtils::Command ones.
157
158Also provide defaults for LD and AR in case the %Config values aren't
159set.
3e3baf6d 160
479d2113 161LDLOADLIBS's default is changed to $Config{libs}.
3e3baf6d 162
479d2113 163Adjustments are made for Borland's quirks needing -L to come first.
3e3baf6d
TB
164
165=cut
166
479d2113
MS
167sub init_others {
168 my ($self) = @_;
169
170 # Used in favor of echo because echo won't strip quotes. :(
dedf98bc
MS
171 $self->{ECHO} ||= $self->oneliner('print qq{@ARGV}', ['-l']);
172
479d2113
MS
173 $self->{TOUCH} ||= '$(PERLRUN) -MExtUtils::Command -e touch';
174 $self->{CHMOD} ||= '$(PERLRUN) -MExtUtils::Command -e chmod';
175 $self->{CP} ||= '$(PERLRUN) -MExtUtils::Command -e cp';
176 $self->{RM_F} ||= '$(PERLRUN) -MExtUtils::Command -e rm_f';
177 $self->{RM_RF} ||= '$(PERLRUN) -MExtUtils::Command -e rm_rf';
178 $self->{MV} ||= '$(PERLRUN) -MExtUtils::Command -e mv';
179 $self->{NOOP} ||= 'rem';
180 $self->{TEST_F} ||= '$(PERLRUN) -MExtUtils::Command -e test_f';
181 $self->{DEV_NULL} ||= '> NUL';
182
183 # technically speaking, these should be in init_main()
184 $self->{LD} ||= $Config{ld} || 'link';
185 $self->{AR} ||= $Config{ar} || 'lib';
186
187 $self->SUPER::init_others;
188
dedf98bc
MS
189 # Setting SHELL from $Config{sh} can break dmake. Its ok without it.
190 delete $self->{SHELL};
191
479d2113
MS
192 $self->{LDLOADLIBS} ||= $Config{libs};
193 # -Lfoo must come first for Borland, so we put it in LDDLFLAGS
194 if ($BORLAND) {
195 my $libs = $self->{LDLOADLIBS};
196 my $libpath = '';
197 while ($libs =~ s/(?:^|\s)(("?)-L.+?\2)(?:\s|$)/ /) {
198 $libpath .= ' ' if length $libpath;
199 $libpath .= $1;
200 }
201 $self->{LDLOADLIBS} = $libs;
202 $self->{LDDLFLAGS} ||= $Config{lddlflags};
203 $self->{LDDLFLAGS} .= " $libpath";
3e3baf6d
TB
204 }
205
479d2113
MS
206 return 1;
207}
3e3baf6d 208
3e3baf6d 209
479d2113 210=item init_platform (o)
3e3baf6d 211
479d2113 212Add MM_Win32_VERSION.
3e3baf6d 213
479d2113 214=item platform_constants (o)
3e3baf6d 215
479d2113 216=cut
3e3baf6d 217
479d2113
MS
218sub init_platform {
219 my($self) = shift;
3e3baf6d 220
479d2113
MS
221 $self->{MM_Win32_VERSION} = $VERSION;
222}
3e3baf6d 223
479d2113
MS
224sub platform_constants {
225 my($self) = shift;
226 my $make_frag = '';
3e3baf6d 227
479d2113
MS
228 foreach my $macro (qw(MM_Win32_VERSION))
229 {
230 next unless defined $self->{$macro};
231 $make_frag .= "$macro = $self->{$macro}\n";
232 }
3e3baf6d 233
479d2113
MS
234 return $make_frag;
235}
3e3baf6d 236
3e3baf6d 237
479d2113 238=item special_targets (o)
3e3baf6d 239
479d2113 240Add .USESHELL target for dmake.
3e3baf6d 241
479d2113 242=cut
3e3baf6d 243
479d2113
MS
244sub special_targets {
245 my($self) = @_;
3e3baf6d 246
479d2113 247 my $make_frag = $self->SUPER::special_targets;
3e3baf6d 248
479d2113
MS
249 $make_frag .= <<'MAKE_FRAG' if $DMAKE;
250.USESHELL :
251MAKE_FRAG
3e3baf6d 252
479d2113 253 return $make_frag;
3e3baf6d
TB
254}
255
256
68dc0745 257=item static_lib (o)
258
479d2113
MS
259Changes how to run the linker.
260
261The rest is duplicate code from MM_Unix. Should move the linker code
262to its own method.
68dc0745 263
264=cut
265
266sub static_lib {
267 my($self) = @_;
68dc0745 268 return '' unless $self->has_link_code;
269
270 my(@m);
271 push(@m, <<'END');
479d2113 272$(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DIRFILESEP).exists
68dc0745 273 $(RM_RF) $@
274END
479d2113 275
022735b4 276 # If this extension has its own library (eg SDBM_File)
68dc0745 277 # then copy that to $(INST_STATIC) and add $(OBJECT) into it.
479d2113
MS
278 push @m, <<'MAKE_FRAG' if $self->{MYEXTLIB};
279 $(CP) $(MYEXTLIB) $@
280MAKE_FRAG
68dc0745 281
282 push @m,
910dfcc8
GS
283q{ $(AR) }.($BORLAND ? '$@ $(OBJECT:^"+")'
284 : ($GCC ? '-ru $@ $(OBJECT)'
285 : '-out:$@ $(OBJECT)')).q{
479d2113
MS
286 $(CHMOD) $(PERM_RWX) $@
287 $(NOECHO) $(ECHO) "$(EXTRALIBS)" > $(INST_ARCHAUTODIR)\extralibs.ld
68dc0745 288};
289
479d2113
MS
290 # Old mechanism - still available:
291 push @m, <<'MAKE_FRAG' if $self->{PERL_SRC} && $self->{EXTRALIBS};
292 $(NOECHO) $(ECHO) "$(EXTRALIBS)" >> $(PERL_SRC)\ext.libs
293MAKE_FRAG
68dc0745 294
479d2113
MS
295 push @m, "\n", $self->dir_target('$(INST_ARCHAUTODIR)');
296 join('', @m);
68dc0745 297}
298
68dc0745 299
300=item dynamic_lib (o)
301
479d2113 302Complicated stuff for Win32 that I don't understand. :(
68dc0745 303
304=cut
305
306sub dynamic_lib {
307 my($self, %attribs) = @_;
308 return '' unless $self->needs_linking(); #might be because of a subdir
309
310 return '' unless $self->has_link_code;
311
3e3baf6d 312 my($otherldflags) = $attribs{OTHERLDFLAGS} || ($BORLAND ? 'c0d32.obj': '');
68dc0745 313 my($inst_dynamic_dep) = $attribs{INST_DYNAMIC_DEP} || "";
314 my($ldfrom) = '$(LDFROM)';
315 my(@m);
7a958ec3 316
5db10396
GS
317# one thing for GCC/Mingw32:
318# we try to overcome non-relocateable-DLL problems by generating
7a958ec3
BS
319# a (hopefully unique) image-base from the dll's name
320# -- BKS, 10-19-1999
321 if ($GCC) {
7a958ec3
BS
322 my $dllname = $self->{BASEEXT} . "." . $self->{DLEXT};
323 $dllname =~ /(....)(.{0,4})/;
324 my $baseaddr = unpack("n", $1 ^ $2);
325 $otherldflags .= sprintf("-Wl,--image-base,0x%x0000 ", $baseaddr);
326 }
327
68dc0745 328 push(@m,'
329# This section creates the dynamically loadable $(INST_DYNAMIC)
330# from $(OBJECT) and possibly $(MYEXTLIB).
331OTHERLDFLAGS = '.$otherldflags.'
332INST_DYNAMIC_DEP = '.$inst_dynamic_dep.'
333
479d2113 334$(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP) $(INST_ARCHAUTODIR)$(DIRFILESEP).exists $(EXPORT_LIST) $(PERL_ARCHIVE) $(INST_DYNAMIC_DEP)
68dc0745 335');
5b0d9cbe
NIS
336 if ($GCC) {
337 push(@m,
910dfcc8
GS
338 q{ dlltool --def $(EXPORT_LIST) --output-exp dll.exp
339 $(LD) -o $@ -Wl,--base-file -Wl,dll.base $(LDDLFLAGS) }.$ldfrom.q{ $(OTHERLDFLAGS) $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) dll.exp
5b0d9cbe
NIS
340 dlltool --def $(EXPORT_LIST) --base-file dll.base --output-exp dll.exp
341 $(LD) -o $@ $(LDDLFLAGS) }.$ldfrom.q{ $(OTHERLDFLAGS) $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) dll.exp });
dc0d354b
GS
342 } elsif ($BORLAND) {
343 push(@m,
344 q{ $(LD) $(LDDLFLAGS) $(OTHERLDFLAGS) }.$ldfrom.q{,$@,,}
345 .($DMAKE ? q{$(PERL_ARCHIVE:s,/,\,) $(LDLOADLIBS:s,/,\,) }
346 .q{$(MYEXTLIB:s,/,\,),$(EXPORT_LIST:s,/,\,)}
347 : q{$(subst /,\,$(PERL_ARCHIVE)) $(subst /,\,$(LDLOADLIBS)) }
348 .q{$(subst /,\,$(MYEXTLIB)),$(subst /,\,$(EXPORT_LIST))})
349 .q{,$(RESFILES)});
350 } else { # VC
351 push(@m,
352 q{ $(LD) -out:$@ $(LDDLFLAGS) }.$ldfrom.q{ $(OTHERLDFLAGS) }
353 .q{$(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) -def:$(EXPORT_LIST)});
5b0d9cbe 354 }
68dc0745 355 push @m, '
479d2113 356 $(CHMOD) $(PERM_RWX) $@
68dc0745 357';
358
359 push @m, $self->dir_target('$(INST_ARCHAUTODIR)');
360 join('',@m);
361}
362
479d2113
MS
363=item clean
364
365Clean out some extra dll.{base,exp} files which might be generated by
366gcc. Otherwise, take out all *.pdb files.
367
368=cut
369
562c1c19
NIS
370sub clean
371{
f6d6199c
MS
372 my ($self) = shift;
373 my $s = $self->SUPER::clean(@_);
1f50c5a9
GS
374 my $clean = $GCC ? 'dll.base dll.exp' : '*.pdb';
375 $s .= <<END;
562c1c19 376clean ::
1f50c5a9 377 -\$(RM_F) $clean
562c1c19
NIS
378
379END
1f50c5a9 380 return $s;
562c1c19
NIS
381}
382
479d2113 383=item init_linker
562c1c19 384
479d2113 385=cut
562c1c19 386
479d2113
MS
387sub init_linker {
388 my $self = shift;
68dc0745 389
479d2113
MS
390 $self->{PERL_ARCHIVE} = "\$(PERL_INC)\\$Config{libperl}";
391 $self->{PERL_ARCHIVE_AFTER} = '';
392 $self->{EXPORT_LIST} = '$(BASEEXT).def';
68dc0745 393}
394
45bc4d3a 395
68dc0745 396=item perl_script
397
479d2113 398Checks for the perl program under several common perl extensions.
68dc0745 399
400=cut
401
402sub perl_script {
403 my($self,$file) = @_;
cae6c631 404 return $file if -r $file && -f _;
479d2113
MS
405 return "$file.pl" if -r "$file.pl" && -f _;
406 return "$file.plx" if -r "$file.plx" && -f _;
cae6c631 407 return "$file.bat" if -r "$file.bat" && -f _;
68dc0745 408 return;
409}
410
3e3baf6d 411
479d2113 412=item xs_o (o)
68dc0745 413
479d2113 414This target is stubbed out. Not sure why.
68dc0745 415
416=cut
417
479d2113
MS
418sub xs_o {
419 return ''
68dc0745 420}
421
68dc0745 422
479d2113 423=item pasthru (o)
68dc0745 424
479d2113
MS
425All we send is -nologo to nmake to prevent it from printing its damned
426banner.
68dc0745 427
428=cut
429
479d2113 430sub pasthru {
68dc0745 431 my($self) = shift;
479d2113 432 return "PASTHRU = " . ($NMAKE ? "-nologo" : "");
68dc0745 433}
434
3e3baf6d 435
479d2113 436=item oneliner (o)
3e3baf6d 437
479d2113
MS
438These are based on what command.com does on Win98. They may be wrong
439for other Windows shells, I don't know.
3e3baf6d
TB
440
441=cut
442
479d2113
MS
443sub oneliner {
444 my($self, $cmd, $switches) = @_;
445 $switches = [] unless defined $switches;
3e3baf6d 446
479d2113
MS
447 # Strip leading and trailing newlines
448 $cmd =~ s{^\n+}{};
449 $cmd =~ s{\n+$}{};
3e3baf6d 450
479d2113
MS
451 $cmd = $self->quote_literal($cmd);
452 $cmd = $self->escape_newlines($cmd);
3e3baf6d 453
479d2113 454 $switches = join ' ', @$switches;
3e3baf6d 455
479d2113 456 return qq{\$(PERLRUN) $switches -e $cmd};
3e3baf6d
TB
457}
458
68dc0745 459
479d2113
MS
460sub quote_literal {
461 my($self, $text) = @_;
68dc0745 462
479d2113
MS
463 # I don't know if this is correct, but it seems to work on
464 # Win98's command.com
465 $text =~ s{"}{\\"}g;
68dc0745 466
dedf98bc
MS
467 # dmake eats '{' inside double quotes and leaves alone { outside double
468 # quotes; however it transforms {{ into { either inside and outside double
469 # quotes. It also translates }} into }. The escaping below is not
470 # 100% correct.
471 if( $DMAKE ) {
472 $text =~ s/{/{{/g;
473 $text =~ s/}}/}}}/g;
474 }
475
479d2113 476 return qq{"$text"};
68dc0745 477}
478
68dc0745 479
479d2113
MS
480sub escape_newlines {
481 my($self, $text) = @_;
68dc0745 482
479d2113
MS
483 # Escape newlines
484 $text =~ s{\n}{\\\n}g;
68dc0745 485
479d2113 486 return $text;
68dc0745 487}
488
68dc0745 489
479d2113 490=item max_exec_len
68dc0745 491
479d2113 492Using 31K, a safe number gotten from Windows 2000.
68dc0745 493
494=cut
495
479d2113
MS
496sub max_exec_len {
497 my $self = shift;
498
499 return $self->{_MAX_EXEC_LEN} ||= 31 * 1024;
68dc0745 500}
501
502
dedf98bc
MS
503=item os_flavor
504
505Windows is Win32.
506
507=cut
508
509sub os_flavor {
510 return('Win32');
511}
512
513
68dc0745 5141;
515__END__
516
517=back
518
519=cut
520
5b0d9cbe 521