This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlapi: Properly document Perl_custom_op_xop()
[perl5.git] / make_ext.pl
CommitLineData
61edc683 1#!./miniperl
a2f19a19
S
2use strict;
3use warnings;
b8d39eba 4use Config;
0e150199
DD
5use constant{IS_CROSS => defined $Config::Config{usecrosscompile} ? 1 : 0,
6 IS_WIN32 => $^O eq 'MSWin32',
7 IS_VMS => $^O eq 'VMS',
8 IS_UNIX => $^O ne 'MSWin32' && $^O ne 'VMS',
9};
91c30809 10
a193a2db 11my @ext_dirs = qw(cpan dist ext);
321c3589 12my $ext_dirs_re = '(?:' . join('|', @ext_dirs) . ')';
8a992763 13
a0d0e21e 14# This script acts as a simple interface for building extensions.
286d62c2
NC
15
16# It's actually a cut and shut of the Unix version ext/utils/makeext and the
17# Windows version win32/build_ext.pl hence the two invocation styles.
18
8abc1060 19# On Unix, it primarily used by the perl Makefile one extension at a time:
a0d0e21e
LW
20#
21# d_dummy $(dynamic_ext): miniperl preplibrary FORCE
e2fabae1 22# @$(RUN) ./miniperl make_ext.pl --target=dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 23#
902aaf3e 24# On Windows or VMS,
286d62c2 25# If '--static' is specified, static extensions will be built.
a34ce875
NC
26# If '--dynamic' is specified, dynamic extensions will be built.
27# If '--nonxs' is specified, nonxs extensions will be built.
8abc1060 28# If '--dynaloader' is specified, DynaLoader will be built.
286d62c2
NC
29# If '--all' is specified, all extensions will be built.
30#
31# make_ext.pl "MAKE=make [-make_opts]" --dir=directory [--target=target] [--static|--dynamic|--all] +ext2 !ext1
32#
33# E.g.
34#
35# make_ext.pl "MAKE=nmake -nologo" --dir=..\ext
36#
37# make_ext.pl "MAKE=nmake -nologo" --dir=..\ext --target=clean
38#
39# make_ext.pl MAKE=dmake --dir=..\ext
40#
41# make_ext.pl MAKE=dmake --dir=..\ext --target=clean
42#
43# Will skip building extensions which are marked with an '!' char.
44# Mostly because they still not ported to specified platform.
45#
46# If any extensions are listed with a '+' char then only those
2effe01f 47# extensions will be built, but only if they aren't countermanded
286d62c2 48# by an '!ext' and are appropriate to the type of building being done.
58ff4bd0 49# An extensions follows the format of Foo/Bar, which would be extension Foo::Bar
286d62c2 50
2fecb8b2
KW
51# To fix dependency ordering, on *nix systems, edit Makefile.SH to create a
52# rule. That isn't sufficient for other systems; you also have to do
53# something in this file. See the code at
54# '# XXX hack for dependency # ordering'
55# below.
56#
b83fde97
KW
57# The basic logic is:
58# 1) if there's a Makefile.PL in git for the module, use it. and call make
59# 2) If not, auto-generate one (normally)
60# 3) unless the auto-generation code figures out that the extension is
61# *really* simple, in which case don't. This will be for pure perl
62# modules, and all that is needed to be done is to copy from the source
63# to the dest directories.
64#
a0d0e21e
LW
65# It may be deleted in a later release of perl so try to
66# avoid using it for other purposes.
67
63d47850 68my (%excl, %incl, %opts, @extspec, @pass_through, $verbose);
97a26ad9
NC
69
70foreach (@ARGV) {
71 if (/^!(.*)$/) {
72 $excl{$1} = 1;
73 } elsif (/^\+(.*)$/) {
74 $incl{$1} = 1;
63d47850
RU
75 } elsif (/^--verbose$/ or /^-v$/) {
76 $verbose = 1;
97a26ad9
NC
77 } elsif (/^--([\w\-]+)$/) {
78 $opts{$1} = 1;
e2fabae1 79 } elsif (/^--([\w\-]+)=(.*)$/) {
7c40aa71 80 push @{$opts{$1}}, $2;
e2fabae1 81 } elsif (/=/) {
fc678412 82 push @pass_through, $_;
ca5de986 83 } elsif (length) {
e2fabae1 84 push @extspec, $_;
97a26ad9
NC
85 }
86}
87
286d62c2
NC
88my $static = $opts{static} || $opts{all};
89my $dynamic = $opts{dynamic} || $opts{all};
a34ce875 90my $nonxs = $opts{nonxs} || $opts{all};
281da5ea 91my $dynaloader = $opts{dynaloader} || $opts{all};
286d62c2 92
ca5de986
NC
93# The Perl Makefile.SH will expand all extensions to
94# lib/auto/X/X.a (or lib/auto/X/Y/Y.a if nested)
95# A user wishing to run make_ext might use
96# X (or X/Y or X::Y if nested)
97
98# canonise into X/Y form (pname)
99
100foreach (@extspec) {
7ad017a8 101 if (s{^lib/auto/}{}) {
ca5de986 102 # Remove lib/auto prefix and /*.* suffix
c5aac6ab 103 s{/[^/]+\.[^/]+$}{};
321c3589 104 } elsif (s{^$ext_dirs_re/}{}) {
ca5de986 105 # Remove ext/ prefix and /pm_to_blib suffix
ca5de986 106 s{/pm_to_blib$}{};
57df1c46
NC
107 # Targets are given as files on disk, but the extension spec is still
108 # written using /s for each ::
109 tr!-!/!;
7ad017a8 110 } elsif (s{::}{\/}g) {
ca5de986 111 # Convert :: to /
7ad017a8 112 } else {
ca5de986
NC
113 s/\..*o//;
114 }
115}
116
fc678412
NC
117my $makecmd = shift @pass_through; # Should be something like MAKE=make
118unshift @pass_through, 'PERL_CORE=1';
119
9afc198b 120my @dirs = @{$opts{dir} || \@ext_dirs};
7c40aa71 121my $target = $opts{target}[0];
07f3cc2a 122$target = 'all' unless defined $target;
a0d0e21e 123
fb73857a 124# Previously, $make was taken from config.sh. However, the user might
125# instead be running a possibly incompatible make. This might happen if
126# the user types "gmake" instead of a plain "make", for example. The
127# correct current value of MAKE will come through from the main perl
128# makefile as MAKE=/whatever/make in $makecmd. We'll be cautious in
129# case third party users of this script (are there any?) don't have the
130# MAKE=$(MAKE) argument, which was added after 5.004_03.
ca5de986
NC
131unless(defined $makecmd and $makecmd =~ /^MAKE=(.*)$/) {
132 die "$0: WARNING: Please include MAKE=\$(MAKE) in \@ARGV\n";
a2f19a19
S
133}
134
eb1f8df7
NC
135# This isn't going to cope with anything fancy, such as spaces inside command
136# names, but neither did what it replaced. Once there is a use case that needs
137# it, please supply patches. Until then, I'm sticking to KISS
138my @make = split ' ', $1 || $Config{make} || $ENV{MAKE};
a2f19a19 139
a0d0e21e 140
07f3cc2a 141if ($target eq '') {
ca5de986 142 die "make_ext: no make target specified (eg all or clean)\n";
3fbff3ec 143} elsif ($target !~ /^(?:all|clean|distclean|realclean|veryclean)$/) {
f6dd0e4f
NC
144 # we are strict about what make_ext is used for because we emulate these
145 # targets for simple modules:
ca5de986 146 die "$0: unknown make target '$target'\n";
a2f19a19
S
147}
148
281da5ea 149if (!@extspec and !$static and !$dynamic and !$nonxs and !$dynaloader) {
286d62c2
NC
150 die "$0: no extension specified\n";
151}
152
153my $perl;
154my %extra_passthrough;
155
0e150199 156if (IS_WIN32) {
14636674
NC
157 require Cwd;
158 require FindExt;
159 my $build = Cwd::getcwd();
286d62c2
NC
160 $perl = $^X;
161 if ($perl =~ m#^\.\.#) {
bc3847b4
NC
162 my $here = $build;
163 $here =~ s{/}{\\}g;
286d62c2
NC
164 $perl = "$here\\$perl";
165 }
166 (my $topdir = $perl) =~ s/\\[^\\]+$//;
167 # miniperl needs to find perlglob and pl2bat
168 $ENV{PATH} = "$topdir;$topdir\\win32\\bin;$ENV{PATH}";
169 my $pl2bat = "$topdir\\win32\\bin\\pl2bat";
170 unless (-f "$pl2bat.bat") {
d7f84378 171 my @args = ($perl, "-I$topdir\\lib", ("$pl2bat.pl") x 2);
63d47850 172 print "@args\n" if $verbose;
27329181 173 system(@args) unless IS_CROSS;
286d62c2
NC
174 }
175
63d47850 176 print "In $build" if $verbose;
7c40aa71 177 foreach my $dir (@dirs) {
a2ac9a71 178 chdir($dir) or die "Cannot cd to $dir: $!\n";
14636674 179 (my $ext = Cwd::getcwd()) =~ s{/}{\\}g;
7c40aa71
NC
180 FindExt::scan_ext($ext);
181 FindExt::set_static_extensions(split ' ', $Config{static_ext});
a85e0e8c
SH
182 chdir $build
183 or die "Couldn't chdir to '$build': $!"; # restore our start directory
184 }
7c40aa71 185
a85e0e8c
SH
186 my @ext;
187 push @ext, FindExt::static_ext() if $static;
188 push @ext, FindExt::dynamic_ext() if $dynamic;
189 push @ext, FindExt::nonxs_ext() if $nonxs;
190 push @ext, 'DynaLoader' if $dynaloader;
7c40aa71 191
a85e0e8c
SH
192 foreach (sort @ext) {
193 if (%incl and !exists $incl{$_}) {
194 #warn "Skipping extension $_, not in inclusion list\n";
195 next;
196 }
197 if (exists $excl{$_}) {
198 warn "Skipping extension $_, not ported to current platform";
199 next;
200 }
201 push @extspec, $_;
1ea1c22c 202 if($_ ne 'DynaLoader' && FindExt::is_static($_)) {
a85e0e8c 203 push @{$extra_passthrough{$_}}, 'LINKTYPE=static';
286d62c2
NC
204 }
205 }
a85e0e8c 206
a2ac9a71 207 chdir '..'
a85e0e8c 208 or die "Couldn't chdir to build directory: $!"; # now in the Perl build
286d62c2 209}
0e150199 210elsif (IS_VMS) {
902aaf3e
CB
211 $perl = $^X;
212 push @extspec, (split ' ', $Config{static_ext}) if $static;
213 push @extspec, (split ' ', $Config{dynamic_ext}) if $dynamic;
a34ce875 214 push @extspec, (split ' ', $Config{nonxs_ext}) if $nonxs;
281da5ea 215 push @extspec, 'DynaLoader' if $dynaloader;
902aaf3e 216}
286d62c2 217
2fecb8b2 218{ # XXX hack for dependency ordering
dc0655f7 219 # Cwd needs to be built before Encode recurses into subdirectories.
926760a6 220 # Pod::Simple needs to be built before Pod::Functions, but after 'if'
dd3e0aed 221 # lib needs to be built before IO-Compress
dc0655f7 222 # This seems to be the simplest way to ensure this ordering:
926760a6 223 my (@first, @second, @other);
dc0655f7 224 foreach (@extspec) {
926760a6 225 if ($_ eq 'Cwd' || $_ eq 'if' || $_ eq 'lib') {
dc0655f7 226 push @first, $_;
926760a6
KW
227 }
228 elsif ($_ eq 'Pod/Simple') {
229 push @second, $_;
dc0655f7
NC
230 } else {
231 push @other, $_;
232 }
233 }
926760a6 234 @extspec = (@first, @second, @other);
dc0655f7
NC
235}
236
91c30809
NC
237if ($Config{osname} eq 'catamount' and @extspec) {
238 # Snowball's chance of building extensions.
239 die "This is $Config{osname}, not building $extspec[0], sorry.\n";
240}
31221351 241$ENV{PERL_CORE} = 1;
91c30809 242
e08c66ce
NC
243foreach my $spec (@extspec) {
244 my $mname = $spec;
ca5de986 245 $mname =~ s!/!::!g;
238a6851 246 my $ext_pathname;
a28b98e8
NC
247
248 # Try new style ext/Data-Dumper/ first
249 my $copy = $spec;
250 $copy =~ tr!/!-!;
cb8c8458
SH
251
252 # List/Util.xs lives in Scalar-List-Utils, Cwd.xs lives in PathTools
253 $copy = 'Scalar-List-Utils' if $copy eq 'List-Util';
254 $copy = 'PathTools' if $copy eq 'Cwd';
255
a28b98e8
NC
256 foreach my $dir (@ext_dirs) {
257 if (-d "$dir/$copy") {
258 $ext_pathname = "$dir/$copy";
259 last;
8a992763 260 }
a28b98e8
NC
261 }
262
263 if (!defined $ext_pathname) {
264 if (-d "ext/$spec") {
265 # Old style ext/Data/Dumper/
266 $ext_pathname = "ext/$spec";
267 } else {
8a992763
NC
268 warn "Can't find extension $spec in any of @ext_dirs";
269 next;
270 }
238a6851 271 }
a2f19a19 272
63d47850 273 print "\tMaking $mname ($target)\n" if $verbose;
a2f19a19 274
f6dd0e4f 275 build_extension($ext_pathname, $perl, $mname, $target,
e08c66ce 276 [@pass_through, @{$extra_passthrough{$spec} || []}]);
ca5de986 277}
a0d0e21e 278
fc678412 279sub build_extension {
f6dd0e4f 280 my ($ext_dir, $perl, $mname, $target, $pass_through) = @_;
acb65a20 281
a85e0e8c
SH
282 unless (chdir "$ext_dir") {
283 warn "Cannot cd to $ext_dir: $!";
284 return;
285 }
286
acb65a20
NC
287 my $up = $ext_dir;
288 $up =~ s![^/]+!..!g;
289
290 $perl ||= "$up/miniperl";
291 my $return_dir = $up;
292 my $lib_dir = "$up/lib";
293
0e150199
DD
294 my ($makefile, $makefile_no_minus_f);
295 if (IS_VMS) {
902aaf3e
CB
296 $makefile = 'descrip.mms';
297 if ($target =~ /clean$/
298 && !-f $makefile
299 && -f "${makefile}_old") {
300 $makefile = "${makefile}_old";
301 }
302 } else {
303 $makefile = 'Makefile';
304 }
fc678412 305
baff067e 306 if (-f $makefile) {
0e150199 307 $makefile_no_minus_f = 0;
1ae6ead9 308 open my $mfh, '<', $makefile or die "Cannot open $makefile: $!";
baff067e
FC
309 while (<$mfh>) {
310 # Plagiarised from CPAN::Distribution
311 last if /MakeMaker post_initialize section/;
312 next unless /^#\s+VERSION_FROM\s+=>\s+(.+)/;
313 my $vmod = eval $1;
314 my $oldv;
315 while (<$mfh>) {
316 next unless /^XS_VERSION = (\S+)/;
317 $oldv = $1;
318 last;
319 }
320 last unless defined $oldv;
321 require ExtUtils::MM_Unix;
322 defined (my $newv = parse_version MM $vmod) or last;
301bcfda 323 if (version->parse($newv) ne $oldv) {
27329181
DD
324 close $mfh or die "close $makefile: $!";
325 _unlink($makefile);
326 {
327 no warnings 'deprecated';
328 goto NO_MAKEFILE;
329 }
baff067e
FC
330 }
331 }
4b226208
BF
332
333 if (IS_CROSS) {
334 # If we're cross-compiling, it's possible that the host's
335 # Makefiles are around.
336 seek($mfh, 0, 0) or die "Cannot seek $makefile: $!";
337
338 my $cross_makefile;
339 while (<$mfh>) {
340 # XXX This might not be throughout enough.
341 # For example, it's possible to cause a false-positive
342 # if cross compiling on and for the Raspberry Pi,
343 # which is insane but plausible.
344 # False positives are really not troublesome, though;
345 # all they mean is that the module gets rebuilt.
346 if (/^CC = \Q$Config{cc}\E/) {
347 $cross_makefile = 1;
348 last;
349 }
350 }
351
352 if (!$cross_makefile) {
353 print "Deleting non-Cross makefile\n";
354 close $mfh or die "close $makefile: $!";
355 _unlink($makefile);
356 }
357 }
0e150199
DD
358 } else {
359 $makefile_no_minus_f = 1;
baff067e
FC
360 }
361
0e150199 362 if ($makefile_no_minus_f || !-f $makefile) {
27329181 363 NO_MAKEFILE:
e74f76b2 364 if (!-f 'Makefile.PL') {
d527ad5d 365 unless (just_pm_to_blib($target, $ext_dir, $mname, $return_dir)) {
f6dd0e4f
NC
366 # No problems returned, so it has faked everything for us. :-)
367 chdir $return_dir || die "Cannot cd to $return_dir: $!";
368 return;
369 }
370
63d47850 371 print "\nCreating Makefile.PL in $ext_dir for $mname\n" if $verbose;
d3bc6aa6 372 my ($fromname, $key, $value);
e74f76b2 373
d42e1eb7
CB
374 $key = 'ABSTRACT_FROM';
375 # We need to cope well with various possible layouts
376 my @dirs = split /::/, $mname;
377 my $leaf = pop @dirs;
378 my $leafname = "$leaf.pm";
379 my $pathname = join '/', @dirs, $leafname;
380 my @locations = ($leafname, $pathname, "lib/$pathname");
381 foreach (@locations) {
382 if (-f $_) {
383 $fromname = $_;
384 last;
d3bc6aa6 385 }
d42e1eb7
CB
386 }
387
388 unless ($fromname) {
389 die "For $mname tried @locations in $ext_dir but can't find source";
390 }
391 ($value = $fromname) =~ s/\.pm\z/.pod/;
392 $value = $fromname unless -e $value;
f689ad37
DM
393
394 if ($mname eq 'Pod::Checker') {
395 # the abstract in the .pm file is unparseable by MM,
396 # so special-case it. We can't use the package's own
397 # Makefile.PL, as it doesn't handle the executable scripts
398 # right.
399 $key = 'ABSTRACT';
400 # this is copied from the CPAN Makefile.PL v 1.171
401 $value = 'Pod::Checker verifies POD documentation contents for compliance with the POD format specifications';
402 }
403
e74f76b2
NC
404 open my $fh, '>', 'Makefile.PL'
405 or die "Can't open Makefile.PL for writing: $!";
d3bc6aa6 406 printf $fh <<'EOM', $0, $mname, $fromname, $key, $value;
e74f76b2
NC
407#-*- buffer-read-only: t -*-
408
13b5e8d8 409# This Makefile.PL was written by %s.
e74f76b2
NC
410# It will be deleted automatically by make realclean
411
412use strict;
413use ExtUtils::MakeMaker;
414
13b5e8d8
NC
415# This is what the .PL extracts to. Not the ultimate file that is installed.
416# (ie Win32 runs pl2bat after this)
417
418# Doing this here avoids all sort of quoting issues that would come from
419# attempting to write out perl source with literals to generate the arrays and
420# hash.
421my @temps = 'Makefile.PL';
422foreach (glob('scripts/pod*.PL')) {
8abc1060 423 # The various pod*.PL extractors change directory. Doing that with relative
13b5e8d8
NC
424 # paths in @INC breaks. It seems the lesser of two evils to copy (to avoid)
425 # the chdir doing anything, than to attempt to convert lib paths to
426 # absolute, and potentially run into problems with quoting special
427 # characters in the path to our build dir (such as spaces)
428 require File::Copy;
429
430 my $temp = $_;
431 $temp =~ s!scripts/!!;
432 File::Copy::copy($_, $temp) or die "Can't copy $temp to $_: $!";
433 push @temps, $temp;
434}
435
436my $script_ext = $^O eq 'VMS' ? '.com' : '';
437my %%pod_scripts;
438foreach (glob('pod*.PL')) {
439 my $script = $_;
9ed9b795 440 s/.PL$/$script_ext/i;
13b5e8d8
NC
441 $pod_scripts{$script} = $_;
442}
443my @exe_files = values %%pod_scripts;
444
e74f76b2 445WriteMakefile(
13b5e8d8
NC
446 NAME => '%s',
447 VERSION_FROM => '%s',
d3bc6aa6 448 %-13s => '%s',
13b5e8d8
NC
449 realclean => { FILES => "@temps" },
450 (%%pod_scripts ? (
451 PL_FILES => \%%pod_scripts,
452 EXE_FILES => \@exe_files,
453 clean => { FILES => "@exe_files" },
454 ) : ()),
e74f76b2
NC
455);
456
457# ex: set ro:
458EOM
459 close $fh or die "Can't close Makefile.PL: $!";
43f197b5
NC
460 # As described in commit 23525070d6c0e51f:
461 # Push the atime and mtime of generated Makefile.PLs back 4
462 # seconds. In certain circumstances ( on virtual machines ) the
463 # generated Makefile.PL can produce a Makefile that is older than
464 # the Makefile.PL. Altering the atime and mtime backwards by 4
465 # seconds seems to resolve the issue.
466 eval {
648eb45f
AH
467 my $ftime = (stat('Makefile.PL'))[9] - 4;
468 utime $ftime, $ftime, 'Makefile.PL';
43f197b5 469 };
21fb4fa0
NC
470 } elsif ($mname =~ /\A(?:Carp
471 |ExtUtils::CBuilder
472 |Safe
473 |Search::Dict)\z/x) {
474 # An explicit list of dual-life extensions that have a Makefile.PL
475 # for CPAN, but we have verified can also be built using the fakery.
d527ad5d 476 my ($problem) = just_pm_to_blib($target, $ext_dir, $mname, $return_dir);
21fb4fa0
NC
477 # We really need to sanity test that we can fake it.
478 # Otherwise "skips" will go undetected, and the build slow down for
479 # everyone, defeating the purpose.
480 if (defined $problem) {
481 if (-d "$return_dir/.git") {
482 # Get the list of files that git isn't ignoring:
483 my @files = `git ls-files --cached --others --exclude-standard 2>/dev/null`;
484 # on error (eg no git) we get nothing, but that's not a
485 # problem. The goal is to see if git thinks that the problem
486 # file is interesting, by getting a positive match with
487 # something git told us about, and if so bail out:
488 foreach (@files) {
489 chomp;
490 # We really need to sanity test that we can fake it.
491 # The intent is that this should only fail because
492 # you've just added a file to the dual-life dist that
493 # we can't handle. In which case you should either
494 # 1) remove the dist from the regex a few lines above.
495 # or
496 # 2) add the file to regex of "safe" filenames earlier
497 # in this function, that starts with ChangeLog
498 die "FATAL - $0 has $mname in the list of simple extensions, but it now contains file '$problem' which we can't handle"
499 if $problem eq $_;
500 }
501 # There's an unexpected file, but it seems to be something
502 # that git will ignore. So fall through to the regular
503 # Makefile.PL handling code below, on the assumption that
504 # we won't get here for a clean build.
505 }
506 warn "WARNING - $0 is building $mname using EU::MM, as it found file '$problem'";
507 } else {
508 # It faked everything for us.
509 chdir $return_dir || die "Cannot cd to $return_dir: $!";
510 return;
511 }
e74f76b2 512 }
21fb4fa0
NC
513
514 # We are going to have to use Makefile.PL:
63d47850 515 print "\nRunning Makefile.PL in $ext_dir\n" if $verbose;
fc678412 516
4b226208 517 my @args = ("-I$lib_dir", 'Makefile.PL');
0e150199 518 if (IS_VMS) {
902aaf3e
CB
519 my $libd = VMS::Filespec::vmspath($lib_dir);
520 push @args, "INST_LIB=$libd", "INST_ARCHLIB=$libd";
521 } else {
a2b175af
NC
522 push @args, 'INSTALLDIRS=perl', 'INSTALLMAN1DIR=none',
523 'INSTALLMAN3DIR=none';
902aaf3e
CB
524 }
525 push @args, @$pass_through;
0e150199 526 _quote_args(\@args) if IS_VMS;
63d47850 527 print join(' ', $perl, @args), "\n" if $verbose;
cbf3d0f6
FC
528 my $code = do {
529 local $ENV{PERL_MM_USE_DEFAULT} = 1;
530 system $perl, @args;
531 };
b5f7915c
DD
532 if($code != 0){
533 #make sure next build attempt/run of make_ext.pl doesn't succeed
534 _unlink($makefile);
535 die "Unsuccessful Makefile.PL($ext_dir): code=$code";
536 }
fc678412 537
61edc683
NC
538 # Right. The reason for this little hack is that we're sitting inside
539 # a program run by ./miniperl, but there are tasks we need to perform
540 # when the 'realclean', 'distclean' or 'veryclean' targets are run.
541 # Unfortunately, they can be run *after* 'clean', which deletes
542 # ./miniperl
543 # So we do our best to leave a set of instructions identical to what
544 # we would do if we are run directly as 'realclean' etc
545 # Whilst we're perfect, unfortunately the targets we call are not, as
546 # some of them rely on a $(PERL) for their own distclean targets.
547 # But this always used to be a problem with the old /bin/sh version of
548 # this.
0e150199 549 if (IS_UNIX) {
fc678412 550 foreach my $clean_target ('realclean', 'veryclean') {
a5bd6593 551 fallback_cleanup($return_dir, $clean_target, <<"EOS");
fc678412
NC
552cd $ext_dir
553if test ! -f Makefile -a -f Makefile.old; then
61edc683 554 echo "Note: Using Makefile.old"
eb1f8df7 555 make -f Makefile.old $clean_target MAKE='@make' @pass_through
61edc683 556else
fc678412 557 if test ! -f Makefile ; then
61edc683
NC
558 echo "Warning: No Makefile!"
559 fi
62fdd72a 560 @make $clean_target MAKE='@make' @pass_through
61edc683 561fi
fc678412 562cd $return_dir
61edc683 563EOS
fc678412 564 }
61edc683 565 }
fc678412 566 }
a2f19a19 567
902aaf3e 568 if (not -f $makefile) {
a2f19a19 569 print "Warning: No Makefile!\n";
fc678412 570 }
a2f19a19 571
0e150199 572 if (IS_VMS) {
e0697720
NC
573 _quote_args($pass_through);
574 @$pass_through = (
575 "/DESCRIPTION=$makefile",
576 '/MACRO=(' . join(',',@$pass_through) . ')'
577 );
902aaf3e
CB
578 }
579
902aaf3e 580 my @targ = ($target, @$pass_through);
63d47850 581 print "Making $target in $ext_dir\n@make @targ\n" if $verbose;
d316fef4 582 local $ENV{PERL_INSTALL_QUIET} = 1;
d708ee4b 583 my $code = system(@make, @targ);
056c263b
DD
584 if($code >> 8 != 0){ # probably cleaned itself, try again once more time
585 $code = system(@make, @targ);
586 }
fc678412 587 die "Unsuccessful make($ext_dir): code=$code" if $code != 0;
a2f19a19 588
fc678412
NC
589 chdir $return_dir || die "Cannot cd to $return_dir: $!";
590}
902aaf3e
CB
591
592sub _quote_args {
593 my $args = shift; # must be array reference
594
595 # Do not quote qualifiers that begin with '/'.
596 map { if (!/^\//) {
597 $_ =~ s/\"/""/g; # escape C<"> by doubling
598 $_ = q(").$_.q(");
599 }
600 } @{$args}
601 ;
602}
27329181
DD
603
604#guarentee that a file is deleted or die, void _unlink($filename)
605#xxx replace with _unlink_or_rename from EU::Install?
606sub _unlink {
607 1 while unlink $_[0];
608 my $err = $!;
609 die "Can't unlink $_[0]: $err" if -f $_[0];
610}
a5bd6593 611
f6dd0e4f
NC
612# Figure out if this extension is simple enough that it would only use
613# ExtUtils::MakeMaker's pm_to_blib target. If we're confident that it would,
614# then do all the work ourselves (returning an empty list), else return the
615# name of a file that we identified as beyond our ability to handle.
616#
617# While this is clearly quite a bit more work than just letting
618# ExtUtils::MakeMaker do it, and effectively is some code duplication, the time
619# savings are impressive.
620
621sub just_pm_to_blib {
d527ad5d 622 my ($target, $ext_dir, $mname, $return_dir) = @_;
2ce0aa69 623 my ($has_lib, $has_top, $has_topdir);
1804eb61 624 my ($last) = $mname =~ /([^:]+)$/;
2ce0aa69 625 my ($first) = $mname =~ /^([^:]+)/;
1804eb61 626
0e150199 627 my $pm_to_blib = IS_VMS ? 'pm_to_blib.ts' : 'pm_to_blib';
8f8d807b 628 my $silent = defined $ENV{MAKEFLAGS} && $ENV{MAKEFLAGS} =~ /\b(s|silent|quiet)\b/;
ad124136 629
f6dd0e4f
NC
630 foreach my $leaf (<*>) {
631 if (-d $leaf) {
ad124136 632 $leaf =~ s/\.DIR\z//i
0e150199 633 if IS_VMS;
f6dd0e4f
NC
634 next if $leaf =~ /\A(?:\.|\.\.|t|demo)\z/;
635 if ($leaf eq 'lib') {
636 ++$has_lib;
637 next;
638 }
2ce0aa69
NC
639 if ($leaf eq $first) {
640 ++$has_topdir;
641 next;
642 }
f6dd0e4f
NC
643 }
644 return $leaf
645 unless -f _;
ad124136 646 $leaf =~ s/\.\z//
0e150199 647 if IS_VMS;
f6dd0e4f
NC
648 # Makefile.PL is "safe" to ignore because we will only be called for
649 # directories that hold a Makefile.PL if they are in the exception list.
650 next
651 if $leaf =~ /\A(ChangeLog
652 |Changes
653 |LICENSE
654 |Makefile\.PL
655 |MANIFEST
656 |META\.yml
ad124136 657 |\Q$pm_to_blib\E
f6dd0e4f
NC
658 |README
659 |README\.patching
660 |README\.release
661 )\z/xi; # /i to deal with case munging systems.
1804eb61
NC
662 if ($leaf eq "$last.pm") {
663 ++$has_top;
664 next;
665 }
f6dd0e4f
NC
666 return $leaf;
667 }
668 return 'no lib/'
1804eb61 669 unless $has_lib || $has_top;
2ce0aa69
NC
670 die "Inconsistent module $mname has both lib/ and $first/"
671 if $has_lib && $has_topdir;
f6dd0e4f 672
5db46185 673 print "Running pm_to_blib for $ext_dir directly\n"
b4c079ca 674 unless $silent;
f6dd0e4f 675
1804eb61
NC
676 my %pm;
677 if ($has_top) {
678 my $to = $mname =~ s!::!/!gr;
679 $pm{"$last.pm"} = "../../lib/$to.pm";
680 }
2ce0aa69 681 if ($has_lib || $has_topdir) {
1804eb61
NC
682 # strictly ExtUtils::MakeMaker uses the pm_to_blib target to install
683 # .pm, pod and .pl files. We're just going to do it for .pm and .pod
684 # files, to avoid problems on case munging file systems. Specifically,
685 # _pm.PL which ExtUtils::MakeMaker should run munges to _PM.PL, and
686 # looks a lot like a regular foo.pl (ie FOO.PL)
687 my @found;
688 require File::Find;
689 unless (eval {
690 File::Find::find({
691 no_chdir => 1,
692 wanted => sub {
693 return if -d $_;
694 # Bail out immediately with the problem file:
695 die \$_
696 unless -f _;
697 die \$_
698 unless /\A[^.]+\.(?:pm|pod)\z/i;
699 push @found, $_;
f6dd0e4f 700 }
2ce0aa69 701 }, $has_lib ? 'lib' : $first);
1804eb61
NC
702 1;
703 }) {
704 # Problem files aren't really errors:
705 return ${$@}
706 if ref $@ eq 'SCALAR';
707 # But anything else is:
708 die $@;
709 }
2ce0aa69
NC
710 if ($has_lib) {
711 $pm{$_} = "../../$_"
712 foreach @found;
713 } else {
714 $pm{$_} = "../../lib/$_"
715 foreach @found;
1804eb61 716 }
f6dd0e4f
NC
717 }
718 # This is running under miniperl, so no autodie
719 if ($target eq 'all') {
31b6f23e
TC
720 my $need_update = 1;
721 if (-f $pm_to_blib) {
722 # avoid touching pm_to_blib unless there's something that
723 # needs updating, see #126710
724 $need_update = 0;
725 my $test_at = -M _;
726 while (my $from = each(%pm)) {
727 if (-M $from < $test_at) {
728 ++$need_update;
729 last;
730 }
731 }
732 keys %pm; # reset iterator
733 }
734
735 if ($need_update) {
736 local $ENV{PERL_INSTALL_QUIET} = 1;
737 require ExtUtils::Install;
738 ExtUtils::Install::pm_to_blib(\%pm, '../../lib/auto');
739 open my $fh, '>', $pm_to_blib
740 or die "Can't open '$pm_to_blib': $!";
741 print $fh "$0 has handled pm_to_blib directly\n";
742 close $fh
743 or die "Can't close '$pm_to_blib': $!";
744 if (IS_UNIX) {
745 # Fake the fallback cleanup
746 my $fallback
747 = join '', map {s!^\.\./\.\./!!; "rm -f $_\n"} sort values %pm;
748 foreach my $clean_target ('realclean', 'veryclean') {
749 fallback_cleanup($return_dir, $clean_target, $fallback);
750 }
d527ad5d
NC
751 }
752 }
f6dd0e4f
NC
753 } else {
754 # A clean target.
755 # For now, make the targets behave the same way as ExtUtils::MakeMaker
756 # does
ad124136 757 _unlink($pm_to_blib);
f6dd0e4f
NC
758 unless ($target eq 'clean') {
759 # but cheat a bit, by relying on the top level Makefile clean target
760 # to take out our directory lib/auto/...
761 # (which it has to deal with, as cpan/foo/bar creates
762 # lib/auto/foo/bar, but the EU::MM rule will only
763 # rmdir lib/auto/foo/bar, leaving lib/auto/foo
9fa5aa91 764 _unlink($_)
1804eb61 765 foreach sort values %pm;
f6dd0e4f
NC
766 }
767 }
768 return;
769}
770
a5bd6593
NC
771sub fallback_cleanup {
772 my ($dir, $clean_target, $contents) = @_;
773 my $file = "$dir/$clean_target.sh";
774 open my $fh, '>>', $file or die "open $file: $!";
775 # Quite possible that we're being run in parallel here.
776 # Can't use Fcntl this early to get the LOCK_EX
387eee9b 777 flock $fh, 2 or warn "flock $file: $!";
a5bd6593
NC
778 print $fh $contents or die "print $file: $!";
779 close $fh or die "close $file: $!";
780}