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