-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathlibbacktrace-20240505-GCC-12.3.0.eb
More file actions
50 lines (39 loc) · 1.18 KB
/
libbacktrace-20240505-GCC-12.3.0.eb
File metadata and controls
50 lines (39 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Author: J. Sassmannshausen (Imperial College London/UK)
easyblock = 'ConfigureMake'
name = 'libbacktrace'
version = '20240505'
local_commit = '11427f3'
homepage = 'https://github.com/ianlancetaylor/libbacktrace/tree/master'
description = """
A C library that may be linked into a C/C++ program to produce symbolic backtraces
Initially written by Ian Lance Taylor iant@golang.org.
This is version 1.0. It is likely that this will always be version 1.0."""
toolchain = {'name': 'GCC', 'version': '12.3.0'}
toolchainopts = {'pic': True}
sources = [{
'filename': SOURCE_TAR_XZ,
'git_config': {
'url': 'https://github.com/ianlancetaylor',
'repo_name': name,
'commit': local_commit,
'recursive': True,
},
}]
checksums = ['e7f0b8ca353f5acb468eb1668146b3b817d62b67c8ab2a8d99459d55736dbe3a']
builddependencies = [
('binutils', '2.40'),
]
dependencies = [
('gzip', '1.12'),
('zstd', '1.5.5'),
('zlib', '1.2.13'),
('lz4', '1.9.4'),
('XZ', '5.4.2'),
]
configopts = '--enable-shared '
runtest = 'check'
sanity_check_paths = {
'files': ['lib/libbacktrace.a', 'lib/libbacktrace.%s' % SHLIB_EXT],
'dirs': ['include'],
}
moduleclass = 'lib'