diff options
author | Kelly Thompson <KineticTheory@users.noreply.github.com> | 2016-10-11 01:43:36 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-11 00:43:36 -0700 |
commit | ff1108712c4e6fec27eec1bdba25e4522b9ef776 (patch) | |
tree | d074307d7454f7da2880e759ada17a84eab0ea01 | |
parent | 1891ce35459f2f402effae2d7a8094bd0df49bc1 (diff) | |
download | spack-ff1108712c4e6fec27eec1bdba25e4522b9ef776.tar.gz spack-ff1108712c4e6fec27eec1bdba25e4522b9ef776.tar.bz2 spack-ff1108712c4e6fec27eec1bdba25e4522b9ef776.tar.xz spack-ff1108712c4e6fec27eec1bdba25e4522b9ef776.zip |
Make CMake-based builds more verbose by default. (#1988)
-rw-r--r-- | lib/spack/spack/build_environment.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/build_environment.py b/lib/spack/spack/build_environment.py index 3f2939609d..15fb943ca4 100644 --- a/lib/spack/spack/build_environment.py +++ b/lib/spack/spack/build_environment.py @@ -408,7 +408,8 @@ def get_rpaths(pkg): def get_std_cmake_args(cmake_pkg): # standard CMake arguments ret = ['-DCMAKE_INSTALL_PREFIX=%s' % cmake_pkg.prefix, - '-DCMAKE_BUILD_TYPE=RelWithDebInfo'] + '-DCMAKE_BUILD_TYPE=RelWithDebInfo', + '-DCMAKE_VERBOSE_MAKEFILE=ON'] if platform.mac_ver()[0]: ret.append('-DCMAKE_FIND_FRAMEWORK=LAST') |