abi-dumper init

This commit is contained in:
licunlong 2020-07-24 19:37:20 +08:00
parent 6c7c1fe1a9
commit 25258ca401
2 changed files with 34 additions and 0 deletions

BIN
abi-dumper-1.1.tar.gz Normal file

Binary file not shown.

34
abi-dumper.spec Normal file
View File

@ -0,0 +1,34 @@
Name: abi-dumper
Version: 1.1
Release: 1
Summary: a tool to dump ABI of an ELF object containing DWARF debug info.
URL: https://github.com/lvc/abi-dumper
License: LGPL v2.1 and GPL v2.0
Source: https://codeload.github.com/lvc/%{name}/tar.gz/%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc make git perl-interpreter perl-generators
Requires: elfutils elfutils-devel libstdc++ libstdc++-devel
%description
The tool is intended to be used with ABI Compliance Checker tool for
tracking ABI changes of a C/C++ library or kernel module:
https://github.com/lvc/abi-compliance-checker
%prep
%autosetup -p1
%install
mkdir -p ${RPM_BUILD_ROOT}%{_prefix}
make install perfix=%{RPM_BUILD_ROOT}%{_prefix}
%files
%defattr(-,root,root)
%license LICENSE LGPL-2.1 GPL-2.0
%doc README
%{_bindir}/%{name}
%clean
rm -rf ${RPM_BUILD_ROOT}
%changelog
* Tue Jul 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.1-1
- Package Init