From 8d540c5a2008e0b00a92ee316494b368c962407e Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Thu, 27 Feb 2025 17:17:06 -0800 Subject: [PATCH] math/costa: Brokeb where OpenMP isn't available Reported by: fallout --- math/costa/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/math/costa/Makefile b/math/costa/Makefile index 7a0ba2039147..b636911a3242 100644 --- a/math/costa/Makefile +++ b/math/costa/Makefile @@ -26,6 +26,10 @@ CMAKE_ARGS= -DCOSTA_SCALAPACK=CUSTOM CMAKE_OFF= COSTA_WITH_TESTS CMAKE_TESTING_ON= COSTA_WITH_TESTS +.if !exists(/usr/include/omp.h) +BROKEN= requires OpenMP support that is missing on this architecture +.endif + OPTIONS_SINGLE= MPI OPTIONS_SINGLE_MPI= MPICH OPENMPI OPTIONS_DEFAULT= MPICH