This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
docs for op slab functions
[perl5.git] / write_buildcustomize.pl
CommitLineData
5e4c4c91
NC
1#!./miniperl -w
2
3use strict;
fdf90be3
JR
4
5my $osname = $^O;
6my $file = 'lib/buildcustomize.pl';
7
8if ( @ARGV % 2 ) {
5e4c4c91
NC
9 my $dir = shift;
10 chdir $dir or die "Can't chdir '$dir': $!";
11 unshift @INC, 'lib';
12}
13
fdf90be3
JR
14if ( @ARGV ) {
15 # Used during cross-compilation.
16 $osname = $ARGV[1];
17}
b78ac715 18
5e4c4c91
NC
19# To clarify, this isn't the entire suite of modules considered "toolchain"
20# It's not even all modules needed to build ext/
21# It's just the source paths of the (minimum complete set of) modules in ext/
22# needed to build the nonxs modules
23# After which, all nonxs modules are in lib, which was always sufficient to
24# allow miniperl to build everything else.
bb6e76f0
DD
25# Getopt::Long is here because it's used by podlators, which is one of the
26# nonxs modules.
f61462d5
CB
27# Term::ReadLine is not here for building but for allowing the debugger to
28# run under miniperl when nothing but miniperl will build :-(.
5e4c4c91
NC
29
30my @toolchain = qw(cpan/AutoLoader/lib
634ff085 31 dist/Carp/lib
cb8c8458 32 dist/PathTools dist/PathTools/lib
d393d7e5 33 cpan/ExtUtils-Install/lib
5e4c4c91 34 cpan/ExtUtils-MakeMaker/lib
854a00d8 35 cpan/ExtUtils-Manifest/lib
5e4c4c91 36 cpan/File-Path/lib
7353f64c 37 ext/re
f61462d5 38 dist/Term-ReadLine/lib
3110a055 39 dist/Exporter/lib
6de85bb4 40 ext/File-Find/lib
f4e064af 41 cpan/Text-Tabs/lib
70c90635 42 dist/constant/lib
0c7fc641 43 cpan/version/lib
bb6e76f0 44 cpan/Getopt-Long/lib
5e4c4c91
NC
45 );
46
3bdc51af
DD
47# Text-ParseWords used only in ExtUtils::Liblist::Kid::_win32_ext()
48# the rest are for XS building on Win32, since nonxs and xs build simultaneously
49# on Win32 if parallel building
50push @toolchain, qw(
51 cpan/Text-ParseWords/lib
52 dist/ExtUtils-ParseXS/lib
3bdc51af
DD
53 cpan/parent/lib
54 cpan/ExtUtils-Constant/lib
55) if $^O eq 'MSWin32';
2d11a7e9
NC
56push @toolchain, 'ext/VMS-Filespec/lib' if $^O eq 'VMS';
57
58unshift @INC, @toolchain;
59require File::Spec::Functions;
3bdc51af
DD
60require Cwd;
61
62my $cwd = Cwd::getcwd();
5e4c4c91 63
2effe01f 64# lib must be last, as the toolchain modules write themselves into it
5e4c4c91
NC
65# as they build, and it's important that @INC order ensures that the partially
66# written files are always masked by the complete versions.
67
68my $inc = join ",\n ",
69 map { "q\0$_\0" }
3bdc51af 70 (map {File::Spec::Functions::rel2abs($_, $cwd)} (
8ce7a7e8
DD
71# faster build on the non-parallel Win32 build process
72 $^O eq 'MSWin32' ? ('lib', @toolchain ) : (@toolchain, 'lib')
73 ));
5e4c4c91 74
b78ac715
NC
75open my $fh, '>', $file
76 or die "Can't open $file: $!";
77
78my $error;
79
5e4c4c91
NC
80# If any of the system's build tools are written in Perl, then this module
81# may well be loaded by a much older version than we are building. So keep it
82# as backwards compatible as is easy.
b78ac715 83print $fh <<"EOT" or $error = "Can't print to $file: $!";
5e4c4c91
NC
84#!perl
85
66ff7d34
FC
86# !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
87# This file is generated by write_buildcustomize.pl.
88# Any changes made here will be lost!
89
5e4c4c91 90# We are miniperl, building extensions
a462003e
FC
91# Replace the first entry of \@INC ("lib") with the list of
92# directories we need.
93splice(\@INC, 0, 1, $inc);
fdf90be3 94\$^O = '$osname';
f4eedc6b 95__END__
5e4c4c91 96EOT
b78ac715
NC
97
98if ($error) {
99 close $fh
100 or warn "Can't unlink $file after error: $!";
101} else {
8e6dd9cb
NC
102 if (close $fh) {
103 do $file and exit;
104 $error = "Can't load generated $file: $@";
105 } else {
106 $error = "Can't close $file: $!";
107 }
b78ac715
NC
108}
109
110# It's going very wrong, so try to remove the botched file.
111
112unlink $file
113 or warn "Can't unlink $file after error: $!";
114die $error;
115
b78ac715 116# ex: set ts=8 sts=4 sw=4 et: