summaryrefslogtreecommitdiff
path: root/var/spack/packages/ompt-openmp/package.py
blob: 9c1b4b9570177e13f8893cdf97f173081a7c7c1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from spack import *

class OmptOpenmp(Package):
    """LLVM/Clang OpenMP runtime with OMPT support. This is a fork of the OpenMPToolsInterface/LLVM-openmp fork of the official LLVM OpenMP mirror.  This library provides a drop-in replacement of the OpenMP runtimes for GCC, Intel and LLVM/Clang."""
    homepage = "https://github.com/OpenMPToolsInterface/LLVM-openmp"
    url      = "http://github.com/khuck/LLVM-openmp/archive/v0.1.tar.gz"

    version('0.1', '3375b5ce67a48cae107371fcd811f639')

    # depends_on("foo")

    def install(self, spec, prefix):
        with working_dir("runtime/build", create=True):

            # FIXME: Modify the configure line to suit your build system here.
            cmake('-DCMAKE_C_COMPILER=%s' % self.compiler.cc, 
                  '-DCMAKE_CXX_COMPILER=%s' % self.compiler.cxx,
                  '-DCMAKE_INSTALL_PREFIX=%s' % prefix,
                  '..', *std_cmake_args)

            # FIXME: Add logic to build and install here
            make()
            make("install")