This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump Math::BigInt::FastCalc to dev release as per Florian's request
[perl5.git] / make_ext.pl
1 #!./miniperl
2 use strict;
3 use warnings;
4 use Config;
5 BEGIN {
6     if ($^O eq 'MSWin32') {
7         unshift @INC, ('../dist/Cwd', '../dist/Cwd/lib');
8         require File::Spec::Functions;
9         require FindExt;
10     }
11     else {
12         unshift @INC, 'dist/Cwd';
13     }
14 }
15 use Cwd;
16
17 my $is_Win32 = $^O eq 'MSWin32';
18 my $is_VMS = $^O eq 'VMS';
19 my $is_Unix = !$is_Win32 && !$is_VMS;
20
21 # To clarify, this isn't the entire suite of modules considered "toolchain"
22 # It's not even all modules needed to build ext/
23 # It's just the source paths of the (minimum complete set of) modules in ext/
24 # needed to build the nonxs modules
25 # After which, all nonxs modules are in lib, which was always sufficient to
26 # allow miniperl to build everything else.
27
28 # This list cannot get any longer without overflowing the length limit for
29 # environment variables on VMS
30 my @toolchain = qw(cpan/AutoLoader/lib
31                    dist/Cwd dist/Cwd/lib
32                    dist/ExtUtils-Command/lib
33                    dist/ExtUtils-Install/lib
34                    cpan/ExtUtils-MakeMaker/lib
35                    dist/ExtUtils-Manifest/lib
36                    cpan/File-Path/lib
37                    );
38
39 # Used only in ExtUtils::Liblist::Kid::_win32_ext()
40 push @toolchain, 'cpan/Text-ParseWords/lib' if $is_Win32;
41
42 my @ext_dirs = qw(cpan dist ext);
43 my $ext_dirs_re = '(?:' . join('|', @ext_dirs) . ')';
44
45 # This script acts as a simple interface for building extensions.
46
47 # It's actually a cut and shut of the Unix version ext/utils/makeext and the
48 # Windows version win32/build_ext.pl hence the two invocation styles.
49
50 # On Unix, it primarily used by the perl Makefile one extention at a time:
51 #
52 # d_dummy $(dynamic_ext): miniperl preplibrary FORCE
53 #       @$(RUN) ./miniperl make_ext.pl --target=dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
54 #
55 # On Windows or VMS,
56 # If '--static' is specified, static extensions will be built.
57 # If '--dynamic' is specified, dynamic extensions will be built.
58 # If '--nonxs' is specified, nonxs extensions will be built.
59 # If '--dynaloader' is specificied, DynaLoader will be built.
60 # If '--all' is specified, all extensions will be built.
61 #
62 #    make_ext.pl "MAKE=make [-make_opts]" --dir=directory [--target=target] [--static|--dynamic|--all] +ext2 !ext1
63 #
64 # E.g.
65
66 #     make_ext.pl "MAKE=nmake -nologo" --dir=..\ext
67
68 #     make_ext.pl "MAKE=nmake -nologo" --dir=..\ext --target=clean
69
70 #     make_ext.pl MAKE=dmake --dir=..\ext
71
72 #     make_ext.pl MAKE=dmake --dir=..\ext --target=clean
73
74 # Will skip building extensions which are marked with an '!' char.
75 # Mostly because they still not ported to specified platform.
76
77 # If any extensions are listed with a '+' char then only those
78 # extensions will be built, but only if they arent countermanded
79 # by an '!ext' and are appropriate to the type of building being done.
80
81 # It may be deleted in a later release of perl so try to
82 # avoid using it for other purposes.
83
84 my (%excl, %incl, %opts, @extspec, @pass_through);
85
86 foreach (@ARGV) {
87     if (/^!(.*)$/) {
88         $excl{$1} = 1;
89     } elsif (/^\+(.*)$/) {
90         $incl{$1} = 1;
91     } elsif (/^--([\w\-]+)$/) {
92         $opts{$1} = 1;
93     } elsif (/^--([\w\-]+)=(.*)$/) {
94         push @{$opts{$1}}, $2;
95     } elsif (/=/) {
96         push @pass_through, $_;
97     } elsif (length) {
98         push @extspec, $_;
99     }
100 }
101
102 my $static = $opts{static} || $opts{all};
103 my $dynamic = $opts{dynamic} || $opts{all};
104 my $nonxs = $opts{nonxs} || $opts{all};
105 my $dynaloader = $opts{dynaloader} || $opts{all};
106
107 # The Perl Makefile.SH will expand all extensions to
108 #       lib/auto/X/X.a  (or lib/auto/X/Y/Y.a if nested)
109 # A user wishing to run make_ext might use
110 #       X (or X/Y or X::Y if nested)
111
112 # canonise into X/Y form (pname)
113
114 foreach (@extspec) {
115     if (s{^lib/auto/}{}) {
116         # Remove lib/auto prefix and /*.* suffix
117         s{/[^/]+\.[^/]+$}{};
118     } elsif (s{^$ext_dirs_re/}{}) {
119         # Remove ext/ prefix and /pm_to_blib suffix
120         s{/pm_to_blib$}{};
121         # Targets are given as files on disk, but the extension spec is still
122         # written using /s for each ::
123         tr!-!/!;
124     } elsif (s{::}{\/}g) {
125         # Convert :: to /
126     } else {
127         s/\..*o//;
128     }
129 }
130
131 my $makecmd  = shift @pass_through; # Should be something like MAKE=make
132 unshift @pass_through, 'PERL_CORE=1';
133
134 my @dirs  = @{$opts{dir} || \@ext_dirs};
135 my $target   = $opts{target}[0];
136 $target = 'all' unless defined $target;
137
138 # Previously, $make was taken from config.sh.  However, the user might
139 # instead be running a possibly incompatible make.  This might happen if
140 # the user types "gmake" instead of a plain "make", for example.  The
141 # correct current value of MAKE will come through from the main perl
142 # makefile as MAKE=/whatever/make in $makecmd.  We'll be cautious in
143 # case third party users of this script (are there any?) don't have the
144 # MAKE=$(MAKE) argument, which was added after 5.004_03.
145 unless(defined $makecmd and $makecmd =~ /^MAKE=(.*)$/) {
146     die "$0:  WARNING:  Please include MAKE=\$(MAKE) in \@ARGV\n";
147 }
148
149 # This isn't going to cope with anything fancy, such as spaces inside command
150 # names, but neither did what it replaced. Once there is a use case that needs
151 # it, please supply patches. Until then, I'm sticking to KISS
152 my @make = split ' ', $1 || $Config{make} || $ENV{MAKE};
153 # Using an array of 0 or 1 elements makes the subsequent code simpler.
154 my @run = $Config{run};
155 @run = () if not defined $run[0] or $run[0] eq '';
156
157
158 if ($target eq '') {
159     die "make_ext: no make target specified (eg all or clean)\n";
160 } elsif ($target !~ /(?:^all|clean)$/) {
161     # for the time being we are strict about what make_ext is used for
162     die "$0: unknown make target '$target'\n";
163 }
164
165 if (!@extspec and !$static and !$dynamic and !$nonxs and !$dynaloader)  {
166     die "$0: no extension specified\n";
167 }
168
169 my $perl;
170 my %extra_passthrough;
171
172 if ($is_Win32) {
173     (my $here = getcwd()) =~ s{/}{\\}g;
174     $perl = $^X;
175     if ($perl =~ m#^\.\.#) {
176         $perl = "$here\\$perl";
177     }
178     (my $topdir = $perl) =~ s/\\[^\\]+$//;
179     # miniperl needs to find perlglob and pl2bat
180     $ENV{PATH} = "$topdir;$topdir\\win32\\bin;$ENV{PATH}";
181     my $pl2bat = "$topdir\\win32\\bin\\pl2bat";
182     unless (-f "$pl2bat.bat") {
183         my @args = ($perl, "-I$topdir\\lib", ("$pl2bat.pl") x 2);
184         print "@args\n";
185         system(@args) unless defined $::Cross::platform;
186     }
187
188     my $build = getcwd();
189     print "In $build";
190     foreach my $dir (@dirs) {
191         chdir($dir) or die "Cannot cd to $dir: $!\n";
192         (my $ext = getcwd()) =~ s{/}{\\}g;
193         FindExt::scan_ext($ext);
194         FindExt::set_static_extensions(split ' ', $Config{static_ext});
195         chdir $build
196             or die "Couldn't chdir to '$build': $!"; # restore our start directory
197     }
198
199     my @ext;
200     push @ext, FindExt::static_ext() if $static;
201     push @ext, FindExt::dynamic_ext() if $dynamic;
202     push @ext, FindExt::nonxs_ext() if $nonxs;
203     push @ext, 'DynaLoader' if $dynaloader;
204
205     foreach (sort @ext) {
206         if (%incl and !exists $incl{$_}) {
207             #warn "Skipping extension $_, not in inclusion list\n";
208             next;
209         }
210         if (exists $excl{$_}) {
211             warn "Skipping extension $_, not ported to current platform";
212             next;
213         }
214         push @extspec, $_;
215         if($_ eq 'DynaLoader' and $target !~ /clean$/) {
216             # No, we don't know why nmake can't work out the dependency chain
217             push @{$extra_passthrough{$_}}, 'DynaLoader.c';
218         } elsif(FindExt::is_static($_)) {
219             push @{$extra_passthrough{$_}}, 'LINKTYPE=static';
220         }
221     }
222
223     chdir '..'
224         or die "Couldn't chdir to build directory: $!"; # now in the Perl build
225 }
226 elsif ($is_VMS) {
227     $perl = $^X;
228     push @extspec, (split ' ', $Config{static_ext}) if $static;
229     push @extspec, (split ' ', $Config{dynamic_ext}) if $dynamic;
230     push @extspec, (split ' ', $Config{nonxs_ext}) if $nonxs;
231     push @extspec, 'DynaLoader' if $dynaloader;
232 }
233
234 {
235     # Cwd needs to be built before Encode recurses into subdirectories.
236     # This seems to be the simplest way to ensure this ordering:
237     my (@first, @other);
238     foreach (@extspec) {
239         if ($_ eq 'Cwd') {
240             push @first, $_;
241         } else {
242             push @other, $_;
243         }
244     }
245     @extspec = (@first, @other);
246 }
247
248 if ($Config{osname} eq 'catamount' and @extspec) {
249     # Snowball's chance of building extensions.
250     die "This is $Config{osname}, not building $extspec[0], sorry.\n";
251 }
252
253 foreach my $spec (@extspec)  {
254     my $mname = $spec;
255     $mname =~ s!/!::!g;
256     my $ext_pathname;
257
258     # Try new style ext/Data-Dumper/ first
259     my $copy = $spec;
260     $copy =~ tr!/!-!;
261     foreach my $dir (@ext_dirs) {
262         if (-d "$dir/$copy") {
263             $ext_pathname = "$dir/$copy";
264             last;
265         }
266     }
267
268     if (!defined $ext_pathname) {
269         if (-d "ext/$spec") {
270             # Old style ext/Data/Dumper/
271             $ext_pathname = "ext/$spec";
272         } else {
273             warn "Can't find extension $spec in any of @ext_dirs";
274             next;
275         }
276     }
277
278     print "\tMaking $mname ($target)\n";
279
280     build_extension($ext_pathname, $perl, $mname,
281                     [@pass_through, @{$extra_passthrough{$spec} || []}]);
282 }
283
284 sub build_extension {
285     my ($ext_dir, $perl, $mname, $pass_through) = @_;
286
287     unless (chdir "$ext_dir") {
288         warn "Cannot cd to $ext_dir: $!";
289         return;
290     }
291
292     my $up = $ext_dir;
293     $up =~ s![^/]+!..!g;
294
295     $perl ||= "$up/miniperl";
296     my $return_dir = $up;
297     my $lib_dir = "$up/lib";
298     # $lib_dir must be last, as we're copying files into it, and in a parallel
299     # make there's a race condition if one process tries to open a module that
300     # another process has half-written.
301     my @new_inc = ((map {"$up/$_"} @toolchain), $lib_dir);
302     if ($is_Win32) {
303         @new_inc = map {File::Spec::Functions::rel2abs($_)} @new_inc;
304     }
305     $ENV{PERL5LIB} = join $Config{path_sep}, @new_inc;
306     $ENV{PERL_CORE} = 1;
307     # warn $ENV{PERL5LIB};
308
309     my $makefile;
310     if ($is_VMS) {
311         $makefile = 'descrip.mms';
312         if ($target =~ /clean$/
313             && !-f $makefile
314             && -f "${makefile}_old") {
315             $makefile = "${makefile}_old";
316         }
317     } else {
318         $makefile = 'Makefile';
319     }
320     
321     if (!-f $makefile) {
322         if (!-f 'Makefile.PL') {
323             print "\nCreating Makefile.PL in $ext_dir for $mname\n";
324             my ($fromname, $key, $value);
325             if ($mname eq 'podlators') {
326                 # We need to special case this somewhere, and this is fewer
327                 # lines of code than a core-only Makefile.PL, and no more
328                 # complex
329                 $fromname = 'VERSION';
330                 $key = 'DISTNAME';
331                 $value = 'podlators';
332                 $mname = 'Pod';
333             } else {
334                 $key = 'ABSTRACT_FROM';
335                 # We need to cope well with various possible layouts
336                 my @dirs = split /::/, $mname;
337                 my $leaf = pop @dirs;
338                 my $leafname = "$leaf.pm";
339                 my $pathname = join '/', @dirs, $leafname;
340                 my @locations = ($leafname, $pathname, "lib/$pathname");
341                 foreach (@locations) {
342                     if (-f $_) {
343                         $fromname = $_;
344                         last;
345                     }
346                 }
347
348                 unless ($fromname) {
349                     die "For $mname tried @locations in in $ext_dir but can't find source";
350                 }
351                 ($value = $fromname) =~ s/\.pm\z/.pod/;
352                 $value = $fromname unless -e $value;
353             }
354             open my $fh, '>', 'Makefile.PL'
355                 or die "Can't open Makefile.PL for writing: $!";
356             printf $fh <<'EOM', $0, $mname, $fromname, $key, $value;
357 #-*- buffer-read-only: t -*-
358
359 # This Makefile.PL was written by %s.
360 # It will be deleted automatically by make realclean
361
362 use strict;
363 use ExtUtils::MakeMaker;
364
365 # This is what the .PL extracts to. Not the ultimate file that is installed.
366 # (ie Win32 runs pl2bat after this)
367
368 # Doing this here avoids all sort of quoting issues that would come from
369 # attempting to write out perl source with literals to generate the arrays and
370 # hash.
371 my @temps = 'Makefile.PL';
372 foreach (glob('scripts/pod*.PL')) {
373     # The various pod*.PL extrators change directory. Doing that with relative
374     # paths in @INC breaks. It seems the lesser of two evils to copy (to avoid)
375     # the chdir doing anything, than to attempt to convert lib paths to
376     # absolute, and potentially run into problems with quoting special
377     # characters in the path to our build dir (such as spaces)
378     require File::Copy;
379
380     my $temp = $_;
381     $temp =~ s!scripts/!!;
382     File::Copy::copy($_, $temp) or die "Can't copy $temp to $_: $!";
383     push @temps, $temp;
384 }
385
386 my $script_ext = $^O eq 'VMS' ? '.com' : '';
387 my %%pod_scripts;
388 foreach (glob('pod*.PL')) {
389     my $script = $_;
390     s/.PL$/$script_ext/i;
391     $pod_scripts{$script} = $_;
392 }
393 my @exe_files = values %%pod_scripts;
394
395 WriteMakefile(
396     NAME          => '%s',
397     VERSION_FROM  => '%s',
398     %-13s => '%s',
399     realclean     => { FILES => "@temps" },
400     (%%pod_scripts ? (
401         PL_FILES  => \%%pod_scripts,
402         EXE_FILES => \@exe_files,
403         clean     => { FILES => "@exe_files" },
404     ) : ()),
405 );
406
407 # ex: set ro:
408 EOM
409             close $fh or die "Can't close Makefile.PL: $!";
410         }
411         print "\nRunning Makefile.PL in $ext_dir\n";
412
413         # Presumably this can be simplified
414         my @cross;
415         if (defined $::Cross::platform) {
416             # Inherited from win32/buildext.pl
417             @cross = "-MCross=$::Cross::platform";
418         } elsif ($opts{cross}) {
419             # Inherited from make_ext.pl
420             @cross = '-MCross';
421         }
422             
423         my @args = (@cross, 'Makefile.PL');
424         if ($is_VMS) {
425             my $libd = VMS::Filespec::vmspath($lib_dir);
426             push @args, "INST_LIB=$libd", "INST_ARCHLIB=$libd";
427         } else {
428             push @args, 'INSTALLDIRS=perl', 'INSTALLMAN1DIR=none',
429                 'INSTALLMAN3DIR=none';
430         }
431         push @args, @$pass_through;
432         _quote_args(\@args) if $is_VMS;
433         print join(' ', @run, $perl, @args), "\n";
434         my $code = system @run, $perl, @args;
435         warn "$code from $ext_dir\'s Makefile.PL" if $code;
436
437         # Right. The reason for this little hack is that we're sitting inside
438         # a program run by ./miniperl, but there are tasks we need to perform
439         # when the 'realclean', 'distclean' or 'veryclean' targets are run.
440         # Unfortunately, they can be run *after* 'clean', which deletes
441         # ./miniperl
442         # So we do our best to leave a set of instructions identical to what
443         # we would do if we are run directly as 'realclean' etc
444         # Whilst we're perfect, unfortunately the targets we call are not, as
445         # some of them rely on a $(PERL) for their own distclean targets.
446         # But this always used to be a problem with the old /bin/sh version of
447         # this.
448         if ($is_Unix) {
449             my $suffix = '.sh';
450             foreach my $clean_target ('realclean', 'veryclean') {
451                 my $file = "$return_dir/$clean_target$suffix";
452                 open my $fh, '>>', $file or die "open $file: $!";
453                 # Quite possible that we're being run in parallel here.
454                 # Can't use Fcntl this early to get the LOCK_EX
455                 flock $fh, 2 or warn "flock $file: $!";
456                 print $fh <<"EOS";
457 cd $ext_dir
458 if test ! -f Makefile -a -f Makefile.old; then
459     echo "Note: Using Makefile.old"
460     make -f Makefile.old $clean_target MAKE='@make' @pass_through
461 else
462     if test ! -f Makefile ; then
463         echo "Warning: No Makefile!"
464     fi
465     make $clean_target MAKE='@make' @pass_through
466 fi
467 cd $return_dir
468 EOS
469                 close $fh or die "close $file: $!";
470             }
471         }
472     }
473
474     if (not -f $makefile) {
475         print "Warning: No Makefile!\n";
476     }
477
478     if ($is_VMS) {
479         _macroify_passthrough($pass_through);
480         unshift @$pass_through, "/DESCRIPTION=$makefile";
481     }
482
483     if (!$target or $target !~ /clean$/) {
484         # Give makefile an opportunity to rewrite itself.
485         # reassure users that life goes on...
486         my @args = ('config', @$pass_through);
487         _quote_args(\@args) if $is_VMS;
488         system(@run, @make, @args) and print "@run @make @args failed, continuing anyway...\n";
489     }
490     my @targ = ($target, @$pass_through);
491     _quote_args(\@targ) if $is_VMS;
492     print "Making $target in $ext_dir\n@run @make @targ\n";
493     my $code = system(@run, @make, @targ);
494     die "Unsuccessful make($ext_dir): code=$code" if $code != 0;
495
496     chdir $return_dir || die "Cannot cd to $return_dir: $!";
497 }
498
499 sub _quote_args {
500     my $args = shift; # must be array reference
501
502     # Do not quote qualifiers that begin with '/'.
503     map { if (!/^\//) {
504           $_ =~ s/\"/""/g;     # escape C<"> by doubling
505           $_ = q(").$_.q(");
506         }
507     } @{$args}
508     ;
509 }
510
511 sub _macroify_passthrough {
512     my $passthrough = shift;
513     _quote_args($passthrough);
514     my $macro = '/MACRO=(' . join(',',@$passthrough) . ')';
515     @$passthrough = ();
516     @$passthrough[0] = $macro;  
517 }