diff --git a/devel/Makefile b/devel/Makefile index d6c2a3925ab8..43cc361cd42a 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1618,6 +1618,7 @@ SUBDIR += opencl SUBDIR += opencvs SUBDIR += opengrok + SUBDIR += openmp SUBDIR += openocd SUBDIR += openvex SUBDIR += openwince-include diff --git a/devel/openmp/Makefile b/devel/openmp/Makefile new file mode 100644 index 000000000000..85a952ef13a9 --- /dev/null +++ b/devel/openmp/Makefile @@ -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 diff --git a/devel/openmp/distinfo b/devel/openmp/distinfo new file mode 100644 index 000000000000..37d6165e20a9 --- /dev/null +++ b/devel/openmp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1463177726 +SHA256 (openmp-3.8.0.src.tar.xz) = 92510e3f62e3de955e3a0b6708cebee1ca344d92fb02369cba5fdd5c68f773a0 +SIZE (openmp-3.8.0.src.tar.xz) = 2233144 diff --git a/devel/openmp/pkg-descr b/devel/openmp/pkg-descr new file mode 100644 index 000000000000..e8770e8e1e81 --- /dev/null +++ b/devel/openmp/pkg-descr @@ -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/