1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
#! /usr/bin/env perl
##
## Copyright (C) by Argonne National Laboratory
## See COPYRIGHT in top-level directory
##
# Set Defaults
$debug = 0;
$debugDir = 0;
$gDebugOther = 0;
$summaryOutput = 0;
$terseOutput = 1;
$rootSrcDir = "";
# Define the known commands, along with known make noise (results of
# echo)
# We include /bin/rm and /bin/mv because some Makefile authors prefer
# to get the full path for these routines
@commands = ( "cc", "pgcc", "gcc", "icc", "acc",
"rm", "mv", "cp", "ar", "ranlib", "perl", "for",
"/bin/rm", "/bin/mv", "/bin/cp", "/bin/chmod",
"rm", "mv", "cp", "chmod",
"if", "make", "gnumake",
"[A-Za-z0-9_\/\.-]*\/mpicc",
"[A-Za-z0-9_\/\.-]*\/mpifort",
"[A-Za-z0-9_\/\.-]*\/mpicxx",
"cleaning", "sleep", "date", "g77", "f77", "f90", "f95", "pgCC",
"pgf77", "pgf90", "CC", "g95", "g\\+\\+", "c\\+\\+",
"acc\\+\\+", "xlc", "xlf", "xlC", "xlf90", "gfortran",
"ifort", "ifc", "test",
"true", "false", "/[A-Za-z0-9_\/\.-]*createshlib",
"/bin/sh\\s+[A-Za-z0-9_\/\.-]*libtool\\s+\(--tag=\\w+\)*\\s+--mode=\\w+",
"/bin/bash\\s+[A-Za-z0-9_\/\.-]*libtool\\s+--mode=\\w+",
"/bin/sh\\s+[A-Za-z0-9_\/\.-]*libtool\\s+--finish",
"/bin/bash\\s+[A-Za-z0-9_\/\.-]*libtool\\s+--finish",
"libtool:\\s+compile:",
"libtool:\\s+link:",
"libtool:\\s+install:",
"libtool:\\s+finish:",
"[A-Za-z0-9_\/-]*\/icc",
"[A-Za-z0-9_\/-]*\/install-sh",
"/usr/bin/ar", "mkdir",
"/bin/mkdir",
"/.*bin/mkdir",
"/usr/ucb/ld",
"mpicc", "mpicxx",
"compiling ROMIO in",
"Make completed",
"echo", "cat",
"NVCC", "CC", "CCLD", "AR", "RANLIB", "LIBTOOL", "MV",
"MOD", "GEN", "F77", "FC", "CXXLD", "CXX", "FCLD",
"CP", "LN", # "terse" make versions
"\\(?cd",
"\\(\\s*cd",
"creating\s+lib.*",
"cd\\s+\&\&\\s+make",
"sed -e",
"PATH=\"\\\$PATH.*\\sldconfig\\s",
"building profiling interface in directory",
"/usr/bin/sed",
"/usr/bin/install",
"/.*bin/install",
".*confdb/install-sh",
"Copying Upshot",
"Cleaning directory",
"[*][*][*][*] Making .*\.\.\.\.",
"Making .* in .*",
"Making upshot", "\\s*\$",
"ld: warning: directory not found for option '-L\\S*src/mpl'",
"ld: warning: directory not found for option '-L\\S*src/openpa/src'",
"copying selected object files to avoid basename conflicts...",
"libtool", "Entering directory", "touch", "cd", "config.status:", "\\(CDPATH=.*",
);
# OtherNoise is an array of patterns that describe blocks of
# text that we'd like to skip. The initial use it to handle
# libtool install output.
# The PG entries are work-arounds for bugs in the PG header files that have
# small incompatibilities with the system header file /usr/include/unistd.h
#
@OtherNoise = ( 'Libraries have been installed in:<SEP>more information, such as the ld\(1\) and ld.so\(8\) manual pages.<SEP>20',
'^\s*-+\s*$<SEP><SEP>1',
'^In directory:<SEP><SEP>1',
'^creating\s<SEP><SEP>1',
# '^PGC-W-0114-More than one type.*/usr/include/unistd.h: 189<SEP>^PGC-W-0143-Useless typedef.*/usr/include/unistd.h: 189<SEP>2',
# '^PGC-W-0114-More than one type.*/usr/include/unistd.h: 243<SEP>^PGC-W-0143-Useless typedef.*/usr/include/unistd.h: 243<SEP>2',
'^PGC.*: compilation completed with warnings<SEP><SEP>1',
# This next is a general version to handle all of these mistakes
'^PGC-W-0114-More than one type specified.*/usr/include<SEP>^PGC-W-0143-Useless typedef declaration \(no declarators present\).*/usr/include<SEP>2',
'copying python',
'LOOP WAS VECTORIZED',
'Using variables ',
'remark #\d+: .*', # intel compiler
);
# In the past, we also needed
# WARNING 84.*not used for resolving any symbol
# Info: File not optimized
$trimCompileLine = 1;
# Create the variables that keep track of state
# dirstack keeps the directory name that gnumake and similar make
# implementations echo as a directory is entered or exited (this can generate
# a great deal of output noise that can obscure important data. However, when
# a problem *does* occur, this directory information is valuable.
# dirprinted is a parallel array that indicates whether the corresponding
# directory entry has been printed.
@dirstack = ();
@dirprinted = ();
# Process arguments to select options
foreach $_ (@ARGV) {
if (/^--?debug/) { $debug = 1; }
elsif (/^--?showdir/) { $debugDir = 1; }
elsif (/^--?summary/) { $summaryOutput = 1; }
elsif (/^--?notrimcompileline/) { $trimCompileLine = 0; }
elsif (/^-/) {
print STDERR "Unrecognized argument $_\n";
print STDERR "clmake [ -debug ] [ -showdir ] [ -summary ]\n";
exit(1);
}
else { last; }
shift @ARGV;
}
# Read lines. Categorize lines as commands and output. This
# script suppresses commands that generate no extra output.
# The approach is to read a line and then read the next line.
# While the line is a command and the next line is not, output the
# line.
#
# We use eof() (see man perlfun) so that we can accept filenames on the
# commandline.
#
$cmdline = "";
$inside_module = 0;
T:
while ($line = <>) {
if (eof()) { next; }
$line =~ s/\r//; # remove returns from line (de DOSify)
# Read the next line, including handling any continuation lines
while ($line =~ /\\$/) {
print "Read continuation line (cmd) ... \n" if $debug;
$line .= <>;
}
# Check for noise
foreach my $pat (@OtherNoise) {
# maxlines is the maximum number of lines to match
my ($beginpat,$endpat,$maxlines) = split( '<SEP>', $pat );
print "Trying to match $beginpat\n" if $gDebugOther;
if ($line =~ /$beginpat/) {
$maxlines --;
print "Found match to $beginpat\n" if $gDebugOther;
# Found the beginning. Look for the end (if one requested)
if ($endpat =~ /\S/) {
print "Trying to match endpat $endpat\n" if $gDebugOther;
while ($line = <>) {
if (eof()) { last; }
print "Trying to match to $line" if $gDebugOther;
if ($line =~ /$endpat/) { last; }
if ($maxlines-- <= 0) {
print STDOUT "Failed to match $endpat; last line was $line";
last;
}
}
}
next T;
}
}
# Is the line a command (including a directory change?)
# Check first for a directory change
if ($line =~ /^\s*make.* Entering directory \'([^\']*)\'/) {
my $dirname = $1;
$dirstack[$#dirstack+1] = $dirname;
$dirprinted[$#dirprinted+1] = 0;
print ">>entering $dirname\n" if $debugDir;
if ($dirname =~ /modules/) {
$inside_module++;
}
$cmdline = "";
next;
}
elsif ($line =~ /^\s*make.* Leaving directory \'([^\']*)\'/) {
# We should check that the directory names match
my $dirname = $1;
print ">>leaving $dirname\n" if $debugDir;
if ($dirname ne $dirstack[$#dirstack]) {
print STDERR "Warning: leaving directory $dirname but expected to leave directory " . $dirstack[$#dirstack] . "\n";
}
$#dirstack--;
$#dirprinted--;
if ($dirname =~ /modules/) {
$inside_module--;
}
$cmdline = "";
next;
}
elsif ($inside_module > 0) {
# Ignore warnings coming from inside other modules. These are outside of MPICH's control
next;
}
else {
$is_command = 0;
foreach $cmdname (@commands) {
if ($line =~ /^\s*$cmdname\W/) {
$is_command = 1;
$cmdline = $line;
last;
}
}
if ($is_command) {
if ($summaryOutput) {
# FIXME: Summarize the command
if ($terseOutput) {
if ($rootSrcDir eq "") {
if ($line =~ /\s(\/\S+\/src\/)/) {
$rootSrcDir = $1;
print "rootSrcDir = $rootSrcDir\n";
}
}
else {
$line =~ s/$rootSrcDir//g;
}
# Compiler options to remove
$line =~ s/-I\S+\s+//g;
$line =~ s/-W\S+\s+//g;
$line =~ s/-D\S+\s+//g;
}
print $line;
}
next;
}
}
# If we got to this point, the line was not a recognized command or
# ignorable output. Output the line, including the command if this
# is the first time. We can then forget the command
if ($#dirstack >= 0 && $dirprinted[$#dirstack] == 0) {
print "In directory: ". $dirstack[$#dirstack] . "\n";
$dirprinted[$#dirstack] = 1;
}
if ($cmdline ne "") {
if ($trimCompileLine) {
# Simplify the command line before printing
$cmdline =~ s/-I\S*\s+//g;
$cmdline =~ s/-ansi//g;
$cmdline =~ s/-W\S*\s+//g;
$cmdline =~ s/-DHAVE_CONFIG_H//g;
$cmdline =~ s/-DGCC_WALL//g;
}
# We could print a newline here to separate commands
print $cmdline;
$cmdline = "";
}
print $line;
}
#
# ToDo:
# Handle lines containing just ----, e.g., patterns of the form
# -*
|