1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00

Add a standalone version of llvm openmp

This commit is contained in:
Baptiste Daroussin 2016-05-13 22:30:15 +00:00
parent 3d411c5dc1
commit b483babb6d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=415157
4 changed files with 37 additions and 0 deletions

View File

@ -1618,6 +1618,7 @@
SUBDIR += opencl
SUBDIR += opencvs
SUBDIR += opengrok
SUBDIR += openmp
SUBDIR += openocd
SUBDIR += openvex
SUBDIR += openwince-include

22
devel/openmp/Makefile Normal file
View File

@ -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>

3
devel/openmp/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1463177726
SHA256 (openmp-3.8.0.src.tar.xz) = 92510e3f62e3de955e3a0b6708cebee1ca344d92fb02369cba5fdd5c68f773a0
SIZE (openmp-3.8.0.src.tar.xz) = 2233144

11
devel/openmp/pkg-descr Normal file
View File

@ -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/