pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / utils / UpdateCMakeLists.pl
blob3aa2f8891e2ec8857fd51fe31535bd443db2f0f0
1 #!/usr/bin/env perl
2 use strict;
3 use File::Find;
4 use File::Copy;
5 use Digest::MD5;
7 my @fileTypes = ("cpp", "c");
8 my %dirFiles;
9 my %dirCMake;
11 sub GetFiles {
12 my $dir = shift;
13 my $x = $dirFiles{$dir};
14 if (!defined $x) {
15 $x = [];
16 $dirFiles{$dir} = $x;
18 return $x;
21 sub ProcessFile {
22 my $file = $_;
23 my $dir = $File::Find::dir;
24 # Record if a CMake file was found.
25 if ($file eq "CMakeLists.txt") {
26 $dirCMake{$dir} = $File::Find::name;
27 return 0;
29 # Grab the extension of the file.
30 $file =~ /\.([^.]+)$/;
31 my $ext = $1;
32 my $files;
33 foreach my $x (@fileTypes) {
34 if ($ext eq $x) {
35 if (!defined $files) {
36 $files = GetFiles($dir);
38 push @$files, $file;
39 return 0;
42 return 0;
45 sub EmitCMakeList {
46 my $dir = shift;
47 my $files = $dirFiles{$dir};
49 if (!defined $files) {
50 return;
53 foreach my $file (sort @$files) {
54 print OUT " ";
55 print OUT $file;
56 print OUT "\n";
60 sub UpdateCMake {
61 my $cmakeList = shift;
62 my $dir = shift;
63 my $cmakeListNew = $cmakeList . ".new";
64 open(IN, $cmakeList);
65 open(OUT, ">", $cmakeListNew);
66 my $foundLibrary = 0;
68 while(<IN>) {
69 if (!$foundLibrary) {
70 print OUT $_;
71 if (/^add_clang_library\(/ || /^add_llvm_library\(/) {
72 $foundLibrary = 1;
73 EmitCMakeList($dir);
76 else {
77 if (/\)/) {
78 print OUT $_;
79 $foundLibrary = 0;
84 close(IN);
85 close(OUT);
87 open(FILE, $cmakeList) or
88 die("Cannot open $cmakeList when computing digest\n");
89 binmode FILE;
90 my $digestA = Digest::MD5->new->addfile(*FILE)->hexdigest;
91 close(FILE);
93 open(FILE, $cmakeListNew) or
94 die("Cannot open $cmakeListNew when computing digest\n");
95 binmode FILE;
96 my $digestB = Digest::MD5->new->addfile(*FILE)->hexdigest;
97 close(FILE);
99 if ($digestA ne $digestB) {
100 move($cmakeListNew, $cmakeList);
101 return 1;
104 unlink($cmakeListNew);
105 return 0;
108 sub UpdateCMakeFiles {
109 foreach my $dir (sort keys %dirCMake) {
110 if (UpdateCMake($dirCMake{$dir}, $dir)) {
111 print "Updated: $dir\n";
116 find({ wanted => \&ProcessFile, follow => 1 }, '.');
117 UpdateCMakeFiles();