forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: libabigail-2.5-GCCcore-13.2.0.eb
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
easybuild/easyconfigs/l/libabigail/libabigail-2.5-GCCcore-13.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'libabigail' | ||
version = '2.5' | ||
|
||
description = """ | ||
ABIGAIL stands for the Application Binary Interface Generic Analysis and | ||
Instrumentation Library. | ||
It’s a framework which aims at helping developers and software distributors | ||
to spot some ABI-related issues like interface incompatibility in ELF shared | ||
libraries by performing a static analysis of the ELF binaries at hand. | ||
The type of interface incompatibilities that Abigail focuses on is related to | ||
changes on the exported ELF functions and variables symbols, as well as layout | ||
and size changes of data types of the functions and variables exported by | ||
shared libraries. | ||
In other words, if the return type of a function exported by a shared library | ||
changes in an incompatible way from one version of a given shared library to | ||
another, we want Abigail to help people catch that. | ||
""" | ||
homepage = 'https://sourceware.org/libabigail' | ||
docurls = ['https://sourceware.org/libabigail/manual'] | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
builddependencies = [('binutils', '2.40')] | ||
|
||
dependencies = [ | ||
('elfutils', '0.190'), | ||
('Python', '3.11.5'), | ||
] | ||
|
||
source_urls = ['https://mirrors.kernel.org/sourceware/libabigail/'] | ||
sources = [SOURCELOWER_TAR_XZ] | ||
checksums = ['7cfc4e9b00ae38d87fb0c63beabb32b9cbf9ce410e52ceeb5ad5b3c5beb111f3'] | ||
|
||
configopts = '--enable-manual=no --enable-apidoc=no --with-sysroot=%(sysroot)s' | ||
|
||
sanity_check_paths = { | ||
'files': [ | ||
'bin/abicompat', 'bin/abidiff', | ||
'lib/libabigail.a', 'lib/libabigail.%s' % SHLIB_EXT, | ||
], | ||
'dirs': ['include'], | ||
} | ||
|
||
moduleclass = 'devel' |