summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorBrian Van Essen <vanessen1@llnl.gov>2023-06-26 18:25:46 -0700
committerGitHub <noreply@github.com>2023-06-26 18:25:46 -0700
commite79f275bc90fe3ba8a93bc28bd4565dd4903a351 (patch)
tree0599d896c6a792e010df891c51a990243a660fc2 /var
parent09b4ed6c8062fb843be7cd9efd06183782b25ef0 (diff)
downloadspack-e79f275bc90fe3ba8a93bc28bd4565dd4903a351.tar.gz
spack-e79f275bc90fe3ba8a93bc28bd4565dd4903a351.tar.bz2
spack-e79f275bc90fe3ba8a93bc28bd4565dd4903a351.tar.xz
spack-e79f275bc90fe3ba8a93bc28bd4565dd4903a351.zip
CachedCMakePackage: set build type (#38502)
Fixed the cached CMake package so that the build_type field is saved in the cached configuration file.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/lbann/package.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/lbann/package.py b/var/spack/repos/builtin/packages/lbann/package.py
index 80dd919bf3..d62f735612 100644
--- a/var/spack/repos/builtin/packages/lbann/package.py
+++ b/var/spack/repos/builtin/packages/lbann/package.py
@@ -393,14 +393,6 @@ class Lbann(CachedCMakePackage, CudaPackage, ROCmPackage):
if "platform=cray" in spec:
entries.append(cmake_cache_option("MPI_ASSUME_NO_BUILTIN_MPI", True))
- cxxflags_str = " ".join(self.spec.compiler_flags["cxxflags"])
- entries.append(
- cmake_cache_string(
- "HIP_HIPCC_FLAGS",
- "-g -fsized-deallocation -fPIC -std=c++17 {0}".format(cxxflags_str),
- )
- )
-
return entries
def initconfig_package_entries(self):