Date: Fri, 13 May 2016 22:30:15 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415157 - in head/devel: . openmp Message-ID: <201605132230.u4DMUFff026894@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Fri May 13 22:30:15 2016 New Revision: 415157 URL: https://svnweb.freebsd.org/changeset/ports/415157 Log: Add a standalone version of llvm openmp Added: head/devel/openmp/ head/devel/openmp/Makefile (contents, props changed) head/devel/openmp/distinfo (contents, props changed) head/devel/openmp/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri May 13 21:53:17 2016 (r415156) +++ head/devel/Makefile Fri May 13 22:30:15 2016 (r415157) @@ -1618,6 +1618,7 @@ SUBDIR += opencl SUBDIR += opencvs SUBDIR += opengrok + SUBDIR += openmp SUBDIR += openocd SUBDIR += openvex SUBDIR += openwince-include Added: head/devel/openmp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/openmp/Makefile Fri May 13 22:30:15 2016 (r415157) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= openmp +PORTVERSION= 3.8.0 +DISTVERSIONSUFFIX= .src +CATEGORIES= devel +MASTER_SITES= http://llvm.org/releases/${PORTVERSION}/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Support for the OpenMP language + +LICENSE= MIT + +USES= tar:xz cmake +USE_LDCONFIG= yes +ONLY_FOR_ARCHS= i386 amd64 +PLIST_FILES= include/omp.h \ + lib/libgomp.so \ + lib/libiomp5.so \ + lib/libomp.so + +.include <bsd.port.mk> Added: head/devel/openmp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/openmp/distinfo Fri May 13 22:30:15 2016 (r415157) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463177726 +SHA256 (openmp-3.8.0.src.tar.xz) = 92510e3f62e3de955e3a0b6708cebee1ca344d92fb02369cba5fdd5c68f773a0 +SIZE (openmp-3.8.0.src.tar.xz) = 2233144 Added: head/devel/openmp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/openmp/pkg-descr Fri May 13 22:30:15 2016 (r415157) @@ -0,0 +1,11 @@ +The OpenMP subproject of LLVM contains the components required to build an +executable OpenMP program that are outside the compiler itself. + +Here you can find : + + * the code for the runtime library against which code compiled by clang + -fopenmp must be linked before it can run. + * the library that supports offload to target devices (in "offload") + * the OpenUH test-suite used to validate the OpenMP runtime + +WWW: http://openmp.llvm.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605132230.u4DMUFff026894>