Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jan 2025 09:37:08 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 9e4348b83e13 - main - science/qmcpack: Broken where OpenMP isn't available
Message-ID:  <202501040937.5049b8RU064485@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=9e4348b83e13461fe4a522d13ba1c3808c63d998

commit 9e4348b83e13461fe4a522d13ba1c3808c63d998
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2025-01-04 09:26:20 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2025-01-04 09:26:20 +0000

    science/qmcpack: Broken where OpenMP isn't available
    
    Reported by:    fallout
---
 science/qmcpack/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/science/qmcpack/Makefile b/science/qmcpack/Makefile
index bf22b3b00ae5..fdc0db74169a 100644
--- a/science/qmcpack/Makefile
+++ b/science/qmcpack/Makefile
@@ -12,6 +12,9 @@ LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BROKEN_i386=	undefined reference to `__atomic_load'
+.if !exists(/usr/include/omp.h)
+BROKEN=		requires OpenMP support that is missing on this architecture
+.endif
 
 LIB_DEPENDS=	libboost_system.so:devel/boost-libs \
 		libfftw3.so:math/fftw3 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501040937.5049b8RU064485>