diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/pocl/package.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/pocl/package.py b/var/spack/repos/builtin/packages/pocl/package.py index 243b4cbf66..b64ae22837 100644 --- a/var/spack/repos/builtin/packages/pocl/package.py +++ b/var/spack/repos/builtin/packages/pocl/package.py @@ -38,8 +38,9 @@ class Pocl(CMakePackage): url = "http://portablecl.org/downloads/pocl-0.13.tar.gz" version("master", git="https://github.com/pocl/pocl.git") - version("0.14-rc", - git="https://github.com/pocl/pocl.git", branch="release_0_14") + version('0.14', '1d35f09299e76b9e3918c42826555194') + # version("0.14-rc", + # git="https://github.com/pocl/pocl.git", branch="release_0_14") version("0.13", "344480864d4269f2f63f1509395898bd") version("0.12", "e197ba3aa01a35f40581c48e053330dd") version("0.11", "9be0640cde2983062c47393d9e8e8fe7") @@ -50,7 +51,8 @@ class Pocl(CMakePackage): patch("vecmathlib.patch", when="@:0.13") # Note: We should describe correctly which pocl versions provide - # what OpenCL version + # which version of the OpenCL standard + # OpenCL standard versions are: 1.0, 1.1, 1.2, 2.0, 2.1, 2.2 provides('opencl@:2.0') depends_on("cmake @2.8.12:", type="build") @@ -64,7 +66,7 @@ class Pocl(CMakePackage): # These are the supported LLVM versions depends_on("llvm @3.7:3.9", when="@master") - depends_on("llvm @3.7:3.9", when="@0.14") + depends_on("llvm @3.7:4.0", when="@0.14") depends_on("llvm @3.7:3.8", when="@0.13") depends_on("llvm @3.2:3.7", when="@0.12") depends_on("llvm @3.2:3.6", when="@0.11") |