This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Time-HiRes-1.76
[perl5.git] / regen.pl
CommitLineData
36bb303b 1#!/usr/bin/perl -w
9ad884cb
JH
2require 5.003; # keep this compatible, an old perl is all we may have before
3 # we build the new one
36bb303b 4
9ad884cb
JH
5# The idea is to move the regen_headers target out of the Makefile so that
6# it is possible to rebuild the headers before the Makefile is available.
7# (and the Makefile is unavailable until after Configure is run, and we may
8# wish to make a clean source tree but with current headers without running
9# anything else.
36bb303b 10
9ad884cb
JH
11use strict;
12my $perl = $^X;
36bb303b 13
9ad884cb
JH
14require 'regen_lib.pl';
15# keep warnings.pl in sync with the CPAN distribution by not requiring core
16# changes
17safer_unlink ("warnings.h", "lib/warnings.pm");
36bb303b 18
9ad884cb
JH
19my %gen = (
20 'autodoc.pl' => [qw[pod/perlapi.pod pod/perlintern.pod]],
21 'bytecode.pl' => [qw[ext/ByteLoader/byterun.h
22 ext/ByteLoader/byterun.c
23 ext/B/B/Asmdata.pm]],
24 'embed.pl' => [qw[proto.h embed.h embedvar.h global.sym
25 perlapi.h perlapi.c]],
26 'keywords.pl' => [qw[keywords.h]],
27 'opcode.pl' => [qw[opcode.h opnames.h pp_proto.h pp.sym]],
28 'regcomp.pl' => [qw[regnodes.h]],
0bfd2b7f
RGS
29 'warnings.pl' => [qw[warnings.h lib/warnings.pm]],
30 'reentr.pl' => [qw[reentr.c reentr.h]],
9ad884cb 31 );
36bb303b 32
9ad884cb
JH
33sub do_cksum {
34 my $pl = shift;
35 my %cksum;
36 for my $f (@{ $gen{$pl} }) {
37 local *FH;
38 if (open(FH, $f)) {
39 local $/;
40 $cksum{$f} = unpack("%32C*", <FH>);
41 close FH;
42 } else {
43 warn "$0: $f: $!\n";
44 }
45 }
46 return %cksum;
36bb303b
NC
47}
48
9ad884cb 49foreach my $pl (qw (keywords.pl opcode.pl embed.pl bytecode.pl
0bfd2b7f 50 regcomp.pl warnings.pl autodoc.pl reentr.pl)) {
9ad884cb
JH
51 print "$^X $pl\n";
52 my %cksum0;
53 %cksum0 = do_cksum($pl) unless $pl eq 'warnings.pl'; # the files were removed
54 system "$^X $pl";
55 next if $pl eq 'warnings.pl'; # the files were removed
56 my %cksum1 = do_cksum($pl);
57 my @chg;
58 for my $f (@{ $gen{$pl} }) {
59 push(@chg, $f)
60 if !defined($cksum0{$f}) ||
61 !defined($cksum1{$f}) ||
62 $cksum0{$f} ne $cksum1{$f};
63 }
64 print "Changed: @chg\n" if @chg;
36bb303b 65}