impalajit-llvm: add new package (#28826)

Co-authored-by: ravil <ravil.dorozhinskii@tum.de>
This commit is contained in:
ravil-mobile 2022-02-11 10:36:46 +01:00 committed by GitHub
parent dff770667e
commit 73463f61d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,32 @@
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class ImpalajitLlvm(CMakePackage):
"""Impala is a calculator-like language. This is a fork of
the original ImpalaJIT project and was enhanced with LLVM JIT.
Impala acts as a backend for `easi` project.
"""
homepage = "https://github.com/ravil-mobile/ImpalaJIT"
git = "https://github.com/ravil-mobile/ImpalaJIT"
maintainers = ['ravil-mobile']
version('develop', branch='master')
version('1.0.0', tag='v1.0.0')
variant('shared', default=True, description='build as a shared library')
depends_on('llvm@10.0.0:11.1.0')
depends_on('z3')
def cmake_args(self):
args = []
args.append(self.define_from_variant('SHARED_LIB', 'shared'))
return args