summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2011-10-14 19:12:35 +0000
committerDavid Greene <greened@obbligato.org>2011-10-14 19:12:35 +0000
commit8e20b9456e58ad7b2416cc9785792f8ee4fbbecf (patch)
treed2fa9a8ddf19db10a6e946547cb6df9b3aade1dd /utils
parentcdc3fbc61bbe790154ee1e71b545adfe7b17128a (diff)
downloadllvm-8e20b9456e58ad7b2416cc9785792f8ee4fbbecf.tar.gz
llvm-8e20b9456e58ad7b2416cc9785792f8ee4fbbecf.tar.bz2
llvm-8e20b9456e58ad7b2416cc9785792f8ee4fbbecf.tar.xz
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
Diffstat (limited to 'utils')
-rwxr-xr-xutils/llvmbuild3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/llvmbuild b/utils/llvmbuild
index 0b43a0c508..6604616be6 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])