67 lines
2.6 KiB
Python
67 lines
2.6 KiB
Python
# 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 RocmGdb(AutotoolsPackage):
|
|
"""This is ROCmgdb, the ROCm source-level debugger for Linux,
|
|
based on GDB, the GNU source-level debugger."""
|
|
|
|
homepage = "https://github.com/ROCm-Developer-Tools/ROCgdb/"
|
|
url = "https://github.com/ROCm-Developer-Tools/ROCgdb/archive/rocm-3.10.0.tar.gz"
|
|
|
|
maintainers = ['srekolam', 'arjun-raj-kuppala']
|
|
|
|
version('4.0.0', sha256='b90291b0a8409fe66d8a65d2731dcb87b9f5a22bac9ce3ffbab726eb129ba13d')
|
|
version('3.10.0', sha256='05455cb47dd42404ee8bba047def6a6846a7e877e7a7db8dcffc7100d5ba16f0')
|
|
version('3.9.0', sha256='0765c96439c0efa145418d210d865b9faed463466d7522274959cc4476a37097')
|
|
version('3.8.0', sha256='a7c11dc30c952587c616bf7769bad603c3bf80522afc8b73ccda5b78d27bed41')
|
|
version('3.7.0', sha256='7a29ef584fd7b6c66bb03aaf8ec2f5a8c758370672a28a4d0d95066e5f6fbdc1')
|
|
version('3.5.0', sha256='cf36d956e84c7a5711b71f281a44b0a9708e13e941d8fca0247d01567e7ee7d1')
|
|
|
|
depends_on('cmake@3:', type='build')
|
|
depends_on('texinfo', type='build')
|
|
depends_on('bison', type='build')
|
|
depends_on('flex', type='build')
|
|
depends_on('libunwind', type='build')
|
|
depends_on('expat', type=('build', 'link'))
|
|
depends_on('python', type=('build', 'link'))
|
|
depends_on('zlib', type='link')
|
|
depends_on('babeltrace@1.2.4', type='link')
|
|
|
|
for ver in ['3.5.0', '3.7.0', '3.8.0', '3.9.0', '3.10.0', '4.0.0']:
|
|
depends_on('rocm-dbgapi@' + ver, type='link', when='@' + ver)
|
|
depends_on('comgr@' + ver, type='link', when='@' + ver)
|
|
|
|
build_directory = 'spack-build'
|
|
|
|
def configure_args(self):
|
|
# Generic options to compile GCC
|
|
options = [
|
|
# Distributor options
|
|
'--program-prefix=roc',
|
|
'--enable-64-bit-bfd',
|
|
'--with-bugurl=https://github.com/ROCm-Developer-Tools/ROCgdb/issues',
|
|
'--with-pkgversion=-ROCm',
|
|
'--enable-targets=x86_64-linux-gnu,amdgcn-amd-amdhsa',
|
|
'--disable-ld',
|
|
'--disable-gas',
|
|
'--disable-gdbserver',
|
|
'--disable-sim',
|
|
'--enable-tui',
|
|
'--disable-gdbtk',
|
|
'--disable-shared',
|
|
'--with-expat',
|
|
'--with-system-zlib'
|
|
'--without-guile',
|
|
'--with-babeltrace',
|
|
'--with-lzma',
|
|
'--with-python',
|
|
'--with-rocm-dbgapi={0}'.format(self.spec['rocm-dbgapi'].prefix)
|
|
]
|
|
return options
|