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
This commit is contained in:
David Greene 2011-10-14 19:12:35 +00:00
parent cdc3fbc61b
commit 8e20b9456e

View File

@ -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])