mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
34 lines
1021 B
Plaintext
34 lines
1021 B
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'libunwind'
|
|
version = '1.1'
|
|
|
|
homepage = 'http://www.nongnu.org/libunwind/'
|
|
description = """The primary goal of libunwind is to define a portable and efficient C programming interface
|
|
(API) to determine the call-chain of a program. The API additionally provides the means to manipulate the
|
|
preserved (callee-saved) state of each call-frame and to resume execution at any point in the call-chain
|
|
(non-local goto). The API supports both local (same-process) and remote (across-process) operation.
|
|
As such, the API is useful in a number of applications"""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '5.4.0-2.26'}
|
|
|
|
sources = [SOURCE_TAR_GZ]
|
|
source_urls = [GNU_SAVANNAH_SOURCE]
|
|
|
|
checksums = [
|
|
'fb4ea2f6fbbe45bf032cd36e586883ce', # libunwind-1.1.tar.gz
|
|
]
|
|
|
|
#dependencies = [
|
|
# ('XZ', '5.2.2'),
|
|
#]
|
|
|
|
#preconfigopts = 'export LIBS="$LIBS -llzma" && '
|
|
|
|
sanity_check_paths = {
|
|
'files': ["include/libunwind.h", "lib/libunwind.%s" % SHLIB_EXT],
|
|
'dirs': []
|
|
}
|
|
|
|
moduleclass = 'lib'
|