compilers: add .stdcxx_libs to the compiler adaptor (#49873)

This property is used by a few recipes, including `cp2k` under
certain configurations

Signed-off-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
This commit is contained in:
Massimiliano Culpo
2025-04-07 15:39:13 +02:00
committed by GitHub
parent e5ec08771b
commit 081e4c463b
4 changed files with 8 additions and 1 deletions

View File

@@ -190,6 +190,10 @@ def f77(self):
self._lang_exists_or_raise("f77", lang=Languages.FORTRAN)
return self.compilers[Languages.FORTRAN].package.fortran
@property
def stdcxx_libs(self):
return self._maybe_return_attribute("stdcxx_libs", lang=Languages.CXX)
class DeprecatedCompiler(lang.DeprecatedProperty):
def __init__(self) -> None: