sort tommath_class.h dependencies: this makes it easier to see changes
This commit is contained in:
parent
7eb6f32186
commit
3ef6efd32a
11
helper.pl
11
helper.pl
@ -339,7 +339,7 @@ EOS
|
||||
$apply = 1;
|
||||
}
|
||||
while (<$src>) {
|
||||
if (!($_ =~ /tommath\.h/)) {
|
||||
if ($_ !~ /tommath\.h/) {
|
||||
print {$out} $_;
|
||||
}
|
||||
}
|
||||
@ -378,18 +378,23 @@ EOS
|
||||
$content =~ s{/\*.*?\*/}{}gs;
|
||||
|
||||
# scan for mp_* and make classes
|
||||
my @deps = ();
|
||||
foreach my $line (split /\n/, $content) {
|
||||
while ($line =~ /(fast_)?(s_)?mp\_[a-z_0-9]*(?=\()|(?<=\()mp\_[a-z_0-9]*(?=,)/g) {
|
||||
my $a = $&;
|
||||
next if $a eq "mp_err";
|
||||
$a =~ tr/[a-z]/[A-Z]/;
|
||||
$a = 'BN_' . $a . '_C';
|
||||
if (!($list =~ /$a/)) {
|
||||
push @deps, $a;
|
||||
}
|
||||
}
|
||||
@deps = sort(@deps);
|
||||
foreach my $a (@deps) {
|
||||
if ($list !~ /$a/) {
|
||||
print {$class} "# define $a\n";
|
||||
}
|
||||
$list = $list . ',' . $a;
|
||||
}
|
||||
}
|
||||
$depmap{$filename} = $list;
|
||||
|
||||
print {$class} "#endif\n\n";
|
||||
|
745
tommath_class.h
745
tommath_class.h
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user