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