mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
devel/libclc: update to more recent snapshot. Includes int64 atomics, popcnt, and recip among smaller changes from the last 6+ months of development.
Reviewed by: swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D12522
This commit is contained in:
parent
f0c066ca33
commit
b7cefa5b5e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=451422
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libclc
|
||||
DISTVERSION= 0.3.0.20170225
|
||||
DISTVERSION= 0.3.0.20170927
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
@ -17,7 +17,7 @@ BUILD_DEPENDS= llvm${LLVMVER}>=4.0:devel/llvm${LLVMVER} \
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= llvm-mirror
|
||||
GH_TAGNAME= 17648cd
|
||||
GH_TAGNAME= 81f74b2
|
||||
|
||||
# ninja based build is broken since commit 598792bc (16 sep 2016)
|
||||
USES= gmake python:2.7,build gmake
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1491069402
|
||||
SHA256 (llvm-mirror-libclc-0.3.0.20170225-17648cd_GH0.tar.gz) = 6dc87f14b3d928be657f0656eb58f4481e015dd85a4d62042a15955193349a3d
|
||||
SIZE (llvm-mirror-libclc-0.3.0.20170225-17648cd_GH0.tar.gz) = 132518
|
||||
TIMESTAMP = 1506535396
|
||||
SHA256 (llvm-mirror-libclc-0.3.0.20170927-81f74b2_GH0.tar.gz) = d1436fda242d19d3d19f05a4068fa6310cbfe0f523c2fcd567b83be1f00db89a
|
||||
SIZE (llvm-mirror-libclc-0.3.0.20170927-81f74b2_GH0.tar.gz) = 137560
|
||||
|
@ -30,6 +30,17 @@ include/clc/cl_khr_global_int32_extended_atomics/atom_max.h
|
||||
include/clc/cl_khr_global_int32_extended_atomics/atom_min.h
|
||||
include/clc/cl_khr_global_int32_extended_atomics/atom_or.h
|
||||
include/clc/cl_khr_global_int32_extended_atomics/atom_xor.h
|
||||
include/clc/cl_khr_int64_base_atomics/atom_add.h
|
||||
include/clc/cl_khr_int64_base_atomics/atom_cmpxchg.h
|
||||
include/clc/cl_khr_int64_base_atomics/atom_dec.h
|
||||
include/clc/cl_khr_int64_base_atomics/atom_inc.h
|
||||
include/clc/cl_khr_int64_base_atomics/atom_sub.h
|
||||
include/clc/cl_khr_int64_base_atomics/atom_xchg.h
|
||||
include/clc/cl_khr_int64_extended_atomics/atom_and.h
|
||||
include/clc/cl_khr_int64_extended_atomics/atom_max.h
|
||||
include/clc/cl_khr_int64_extended_atomics/atom_min.h
|
||||
include/clc/cl_khr_int64_extended_atomics/atom_or.h
|
||||
include/clc/cl_khr_int64_extended_atomics/atom_xor.h
|
||||
include/clc/cl_khr_local_int32_base_atomics/atom_add.h
|
||||
include/clc/cl_khr_local_int32_base_atomics/atom_cmpxchg.h
|
||||
include/clc/cl_khr_local_int32_base_atomics/atom_dec.h
|
||||
@ -43,8 +54,8 @@ include/clc/cl_khr_local_int32_extended_atomics/atom_or.h
|
||||
include/clc/cl_khr_local_int32_extended_atomics/atom_xor.h
|
||||
include/clc/clc.h
|
||||
include/clc/clcfunc.h
|
||||
include/clc/clcmacros.h
|
||||
include/clc/clctypes.h
|
||||
include/clc/clcversion.h
|
||||
include/clc/common/degrees.h
|
||||
include/clc/common/degrees.inc
|
||||
include/clc/common/mix.h
|
||||
@ -57,6 +68,7 @@ include/clc/common/smoothstep.inc
|
||||
include/clc/common/step.h
|
||||
include/clc/common/step.inc
|
||||
include/clc/convert.h
|
||||
include/clc/explicit_fence/explicit_memory_fence.h
|
||||
include/clc/float/definitions.h
|
||||
include/clc/geometric/cross.h
|
||||
include/clc/geometric/distance.h
|
||||
@ -98,12 +110,14 @@ include/clc/integer/mul24.h
|
||||
include/clc/integer/mul24.inc
|
||||
include/clc/integer/mul_hi.h
|
||||
include/clc/integer/mul_hi.inc
|
||||
include/clc/integer/popcount.h
|
||||
include/clc/integer/rhadd.h
|
||||
include/clc/integer/rhadd.inc
|
||||
include/clc/integer/rotate.h
|
||||
include/clc/integer/rotate.inc
|
||||
include/clc/integer/sub_sat.h
|
||||
include/clc/integer/sub_sat.inc
|
||||
include/clc/integer/unary_intrin.inc
|
||||
include/clc/integer/upsample.h
|
||||
include/clc/math/acos.h
|
||||
include/clc/math/acos.inc
|
||||
@ -197,6 +211,7 @@ include/clc/math/native_log.inc
|
||||
include/clc/math/native_log2.h
|
||||
include/clc/math/native_log2.inc
|
||||
include/clc/math/native_powr.h
|
||||
include/clc/math/native_recip.h
|
||||
include/clc/math/native_rsqrt.h
|
||||
include/clc/math/native_sin.h
|
||||
include/clc/math/native_sqrt.h
|
||||
@ -227,6 +242,8 @@ include/clc/math/tgamma.inc
|
||||
include/clc/math/trunc.h
|
||||
include/clc/math/unary_decl.inc
|
||||
include/clc/math/unary_intrin.inc
|
||||
include/clc/misc/shuffle.h
|
||||
include/clc/misc/shuffle2.h
|
||||
include/clc/relational/all.h
|
||||
include/clc/relational/any.h
|
||||
include/clc/relational/binary_decl.inc
|
||||
|
Loading…
Reference in New Issue
Block a user