- update to 1.6.2: * Fix off-by-one error in x86_64 stack frames * Fix error in aarch64 unw_sigcontext * resolve possible null pointer dereference * Switch to C11 atomics * RISC-V support * aarch64 getcontext functionality OBS-URL: https://build.opensuse.org/request/show/971329 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libunwind?expand=0&rev=52
76 lines
2.0 KiB
RPMSpec
76 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package libunwind
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: libunwind
|
|
Version: 1.6.2
|
|
Release: 0
|
|
Summary: Call chain detection library
|
|
License: MIT
|
|
Group: System/Base
|
|
URL: https://savannah.nongnu.org/projects/libunwind/
|
|
Source0: https://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz
|
|
Source1: https://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz.sig
|
|
Source2: %{name}.keyring
|
|
Source3: baselibs.conf
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: lzma-devel
|
|
BuildRequires: pkgconfig
|
|
ExcludeArch: s390 riscv64
|
|
|
|
%description
|
|
A C programming interface (API) to determine the call chain of a program.
|
|
|
|
%package devel
|
|
Summary: Headers for the Unwind library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name} = %{version}
|
|
|
|
%description devel
|
|
A C programming interface (API) to determine the call chain of a program.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure \
|
|
--enable-minidebuginfo
|
|
%make_build
|
|
|
|
%check
|
|
%if ! 0%{?qemu_user_space_build}
|
|
# run-coredump-unwind fails
|
|
%make_build check || :
|
|
%endif
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -iregex '.*\.l?a$' -delete -print
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%{_libdir}/lib*.so.*
|
|
|
|
%files devel
|
|
%{_includedir}/*
|
|
%{_libdir}/%{name}*.so
|
|
%{_libdir}/pkgconfig/%{name}*.pc
|
|
|
|
%changelog
|