honor global spack flags (#33470)
This commit is contained in:
parent
3fd097f1d5
commit
773de54cd9
1 changed files with 17 additions and 0 deletions
|
@ -179,6 +179,23 @@ def hostconfig(self):
|
|||
cfg.write("# cpp compiler used by spack\n")
|
||||
cfg.write(cmake_cache_entry("CMAKE_CXX_COMPILER", cpp_compiler))
|
||||
|
||||
# use global spack compiler flags
|
||||
cppflags = " ".join(spec.compiler_flags["cppflags"])
|
||||
if cppflags:
|
||||
# avoid always ending up with ' ' with no flags defined
|
||||
cppflags += " "
|
||||
cflags = cppflags + " ".join(spec.compiler_flags["cflags"])
|
||||
if cflags:
|
||||
cfg.write(cmake_cache_entry("CMAKE_C_FLAGS", cflags))
|
||||
cxxflags = cppflags + " ".join(spec.compiler_flags["cxxflags"])
|
||||
if cxxflags:
|
||||
cfg.write(cmake_cache_entry("CMAKE_CXX_FLAGS", cxxflags))
|
||||
fflags = " ".join(spec.compiler_flags["fflags"])
|
||||
if self.spec.satisfies("%cce"):
|
||||
fflags += " -ef"
|
||||
if fflags:
|
||||
cfg.write(cmake_cache_entry("CMAKE_Fortran_FLAGS", fflags))
|
||||
|
||||
# shared vs static libs
|
||||
if "+shared" in spec:
|
||||
cfg.write(cmake_cache_entry("BUILD_SHARED_LIBS", "ON"))
|
||||
|
|
Loading…
Reference in a new issue