From: David Greene Date: Fri, 14 Oct 2011 19:12:35 +0000 (+0000) Subject: Add Helpful Messages X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=8e20b9456e58ad7b2416cc9785792f8ee4fbbecf;p=oota-llvm.git Add Helpful Messages 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 --- diff --git a/utils/llvmbuild b/utils/llvmbuild index 0b43a0c5086..6604616be6e 100755 --- a/utils/llvmbuild +++ b/utils/llvmbuild @@ -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])