Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Mar 2023 00:05:36 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: a637a8462786 - main - devel/thrust: fix build without libomp
Message-ID:  <202303130005.32D05adp080275@gitrepo.freebsd.org>

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

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

commit a637a846278661ef4204419583e4233a77a8456e
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2023-03-13 00:02:29 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2023-03-13 00:02:29 +0000

    devel/thrust: fix build without libomp
    
    CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
    CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
    CMake Error at /usr/local/share/cmake/Modules/FindOpenMP.cmake:261 (try_compile):
      Failed to configure test project build system.
    Call Stack (most recent call first):
      /usr/local/share/cmake/Modules/FindOpenMP.cmake:537 (_OPENMP_GET_FLAGS)
      CMakeLists.txt:305 (find_package)
---
 devel/thrust/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/devel/thrust/Makefile b/devel/thrust/Makefile
index 309249d911c5..8d531b5ed043 100644
--- a/devel/thrust/Makefile
+++ b/devel/thrust/Makefile
@@ -10,6 +10,9 @@ LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 USES=		cmake
+.if !exists(/usr/include/omp.h)
+USES+=		compiler:gcc-c++11-lib
+.endif
 USE_GITHUB=	yes
 
 NO_ARCH=	yes



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