spack/var/spack/repos/builtin/packages/chill/package.py
Derick Huth fadba727d3 Chill package: build fixes (#12249)
* Specify rose/boost dependencies separately
* Replace custom bootstrap phase with autoreconf phase and fix typo
  when locating bash exe
* Add bison/flex dependencies
* Fix configure args typo
2019-08-21 18:39:06 -07:00

61 lines
2.1 KiB
Python

# Copyright 2013-2019 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 Chill(AutotoolsPackage):
"""A polyheadral compiler for autotuning"""
homepage = "http://github.com/CtopCsUtahEdu/chill"
url = "https://github.com/CtopCsUtahEdu/chill/archive/v0.3.tar.gz"
git = "https://github.com/CtopCsUtahEdu/chill.git"
maintainers = ['dhuth']
version('master', branch='master')
version('0.3', sha256='574b622368a6bfaadbe9c1fa02fabefdc6c006069246f67d299f943b7e1d8aa3')
depends_on('boost@1.66.0 cxxstd=11', type='build')
depends_on('rose@0.9.10.0 +cxx11', type='build')
depends_on('autoconf', type='build')
depends_on('automake@1.14:', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('iegenlib', type='build')
depends_on('bison@3.4', type='build')
depends_on('flex', type='build')
depends_on('python')
build_directory = 'spack-build'
def autoreconf(self, spec, prefix):
bash = which('bash')
bash('./bootstrap')
def setup_environment(self, spack_env, run_env):
rose_home = self.spec['rose'].prefix
boost_home = self.spec['boost'].prefix
iegen_home = self.spec['iegenlib'].prefix
spack_env.append_path('LD_LIBRARY_PATH', rose_home.lib)
spack_env.append_path('LD_LIBRARY_PATH', boost_home.lib)
spack_env.append_path('LD_LIBRARY_PATH', iegen_home.lib)
run_env.append_path('LD_LIBRARY_PATH', rose_home.lib)
run_env.append_path('LD_LIBRARY_PATH', boost_home.lib)
run_env.append_path('LD_LIBRARY_PATH', iegen_home.lib)
spack_env.set('ROSEHOME', rose_home)
spack_env.set('BOOSTHOME', boost_home)
spack_env.set('IEGENHOME', iegen_home)
def configure_args(self):
args = ['--with-rose={0}'.format(self.spec['rose'].prefix),
'--with-boost={0}'.format(self.spec['boost'].prefix),
'--with-iegen={0}'.format(self.spec['iegenlib'].prefix)]
return args