summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKelly (KT) Thompson <kgt@lanl.gov>2016-04-04 14:41:41 -0600
committerKelly (KT) Thompson <kgt@lanl.gov>2016-04-04 14:41:41 -0600
commitdb23d27eb4c7b6be36a0b9df19160cbd3af511e4 (patch)
tree6597ec8b0340564af482a502be50fc4a14b042f7
parentcd3086f78d878a86c78672110bbc3fba4894a401 (diff)
downloadspack-db23d27eb4c7b6be36a0b9df19160cbd3af511e4.tar.gz
spack-db23d27eb4c7b6be36a0b9df19160cbd3af511e4.tar.bz2
spack-db23d27eb4c7b6be36a0b9df19160cbd3af511e4.tar.xz
spack-db23d27eb4c7b6be36a0b9df19160cbd3af511e4.zip
+ Revert accidental commit that set CMAKE_BUILD_TYPE=Release.
-rw-r--r--lib/spack/spack/build_environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_environment.py b/lib/spack/spack/build_environment.py
index 2ef874803c..f4f8037ac0 100644
--- a/lib/spack/spack/build_environment.py
+++ b/lib/spack/spack/build_environment.py
@@ -217,7 +217,7 @@ def set_module_variables_for_package(pkg, module):
# standard CMake arguments
m.std_cmake_args = ['-DCMAKE_INSTALL_PREFIX=%s' % pkg.prefix,
- '-DCMAKE_BUILD_TYPE=Release']
+ '-DCMAKE_BUILD_TYPE=RelWithDebInfo']
if platform.mac_ver()[0]:
m.std_cmake_args.append('-DCMAKE_FIND_FRAMEWORK=LAST')