Add Helpful Messages
authorDavid Greene <greened@obbligato.org>
Fri, 14 Oct 2011 19:12:35 +0000 (19:12 +0000)
committerDavid Greene <greened@obbligato.org>
Fri, 14 Oct 2011 19:12:35 +0000 (19:12 +0000)
Bit just a bit more verbose about what's going on.  Print options
to make to aid debugging.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141976 91177308-0d34-0410-b5e6-96231b3b80d8

utils/llvmbuild

index 0b43a0c508674f4060439f6f9e636d533b089528..6604616be6e18f3f2a4b0b74f8ecc6470c4be566 100755 (executable)
@@ -653,6 +653,7 @@ class Builder(threading.Thread):
                            configure_env[comp_key][build])
 
             self.logger.info("Building " + component + " in " + builddir)
+            self.logger.info("Build: make " + str(make_flags[comp_key][build]))
             self.make(component, srcdir, builddir,
                       make_flags[comp_key][build],
                       make_env[comp_key][build])
@@ -664,6 +665,8 @@ class Builder(threading.Thread):
                           make_install_env[comp_key][build])
 
             self.logger.info("Testing " + component + " in " + builddir)
+            self.logger.info("Test: make "
+                             + str(make_check_flags[comp_key][build]))
             self.make(component, srcdir, builddir,
                       make_check_flags[comp_key][build],
                       make_check_env[comp_key][build])