From ef1eabe5b38f328b3a532c449059a9ea456c8692 Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Fri, 12 Jul 2024 15:25:41 +0200 Subject: [PATCH] Add c to the list of languages (#45191) --- lib/spack/spack/directives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spack/spack/directives.py b/lib/spack/spack/directives.py index b69f83a75d..6c929007ba 100644 --- a/lib/spack/spack/directives.py +++ b/lib/spack/spack/directives.py @@ -97,7 +97,7 @@ class OpenMpi(Package): PatchesType = Optional[Union[Patcher, str, List[Union[Patcher, str]]]] -SUPPORTED_LANGUAGES = ("fortran", "cxx") +SUPPORTED_LANGUAGES = ("fortran", "cxx", "c") def _make_when_spec(value: WhenType) -> Optional["spack.spec.Spec"]: