diff options
-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') |