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