mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 06:32:09 +00:00
Fix computation of compiled objects, contributed by Vladimir Merzliakov!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20564 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e87f6c31d2
commit
0bb4828f17
@ -414,7 +414,7 @@ if (!$NOCHECKOUT) {
|
||||
my @Linked = split '\n', `grep Linking $BuildLog`;
|
||||
my $NumExecutables = scalar(grep(/executable/, @Linked));
|
||||
my $NumLibraries = scalar(grep(!/executable/, @Linked));
|
||||
my $NumObjects = `grep '^Compiling' $BuildLog | wc -l` + 0;
|
||||
my $NumObjects = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
|
||||
|
||||
my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
|
||||
my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";
|
||||
|
Loading…
x
Reference in New Issue
Block a user