2017-02-27 20:05:22 +00:00
|
|
|
Name: libcxxabi
|
2017-06-23 16:39:48 +00:00
|
|
|
Version: 4.0.1
|
2017-02-27 20:05:22 +00:00
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: Low level support for a standard C++ library
|
|
|
|
License: MIT or NCSA
|
|
|
|
URL: http://libcxxabi.llvm.org/
|
|
|
|
Source0: http://llvm.org/releases/%{version}/libcxxabi-%{version}.src.tar.xz
|
2017-04-22 19:56:43 +00:00
|
|
|
BuildRequires: clang llvm-devel cmake llvm-static
|
2017-02-27 20:05:22 +00:00
|
|
|
BuildRequires: libcxx-devel >= %{version}
|
|
|
|
%if 0%{?rhel}
|
|
|
|
# libcxx-devel has this, so we need to as well.
|
|
|
|
ExcludeArch: ppc64 ppc64le
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
libcxxabi provides low level support for a standard C++ library.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Headers and libraries for libcxxabi devel
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
%package static
|
|
|
|
Summary: Static libraries for libcxxabi
|
|
|
|
|
|
|
|
%description static
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{name}-%{version}.src
|
|
|
|
|
|
|
|
sed -i 's|${LLVM_BINARY_DIR}/share/llvm/cmake|%{_libdir}/cmake/llvm|g' CMakeLists.txt
|
|
|
|
|
|
|
|
%build
|
2017-02-27 21:03:49 +00:00
|
|
|
%ifarch armv7hl
|
|
|
|
# disable ARM exception handling
|
|
|
|
sed -i 's|LIBCXXABI_ARM_EHABI 1|LIBCXXABI_ARM_EHABI 0|g' include/__cxxabi_config.h
|
|
|
|
%endif
|
|
|
|
|
2017-02-27 20:05:22 +00:00
|
|
|
mkdir _build
|
|
|
|
cd _build
|
|
|
|
%ifarch s390 s390x
|
|
|
|
%if 0%{?fedora} < 26
|
|
|
|
# clang requires z10 at minimum
|
|
|
|
# workaround until we change the defaults for Fedora
|
|
|
|
%global optflags %(echo %{optflags} | sed 's/-march=z9-109 /-march=z10 /')
|
|
|
|
%endif
|
|
|
|
%endif
|
2017-02-27 20:31:19 +00:00
|
|
|
|
2017-02-27 20:05:22 +00:00
|
|
|
export LDFLAGS="-Wl,--build-id"
|
|
|
|
%cmake .. \
|
|
|
|
-DCMAKE_C_COMPILER=/usr/bin/clang \
|
|
|
|
-DCMAKE_CXX_COMPILER=/usr/bin/clang++ \
|
|
|
|
-DLLVM_CONFIG=%{_bindir}/llvm-config \
|
|
|
|
-DCMAKE_CXX_FLAGS="-std=c++11" \
|
|
|
|
-DLIBCXXABI_LIBCXX_INCLUDES=%{_includedir}/c++/v1/ \
|
2017-02-27 20:08:28 +00:00
|
|
|
%if 0%{?__isa_bits} == 64
|
2017-02-27 20:05:22 +00:00
|
|
|
-DLIBCXXABI_LIBDIR_SUFFIX:STRING=64 \
|
|
|
|
%endif
|
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
|
|
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
cd _build
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
mkdir -p %{buildroot}%{_includedir}
|
|
|
|
cd ..
|
|
|
|
cp -a include/* %{buildroot}%{_includedir}
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE.TXT
|
|
|
|
%doc CREDITS.TXT
|
|
|
|
%{_libdir}/libc++abi.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/*.h
|
|
|
|
%{_libdir}/libc++abi.so
|
|
|
|
|
|
|
|
%files static
|
|
|
|
%{_libdir}/libc++abi.a
|
|
|
|
|
|
|
|
%changelog
|
2017-06-23 16:39:48 +00:00
|
|
|
* Fri Jun 23 2017 Tom Callaway <spot@fedoraproject.org> - 4.0.1-1
|
|
|
|
- update to 4.0.1
|
|
|
|
|
2017-04-22 19:34:37 +00:00
|
|
|
* Sat Apr 22 2017 Tom Callaway <spot@fedoraproject.org> - 4.0.0-1
|
|
|
|
- update to 4.0.0
|
|
|
|
|
2017-02-27 20:05:22 +00:00
|
|
|
* Mon Feb 20 2017 Tom Callaway <spot@fedoraproject.org> - 3.9.0-1
|
|
|
|
- update to 3.9.0
|
|
|
|
- apply fixes from libcxx
|
|
|
|
|
|
|
|
* Wed Sep 7 2016 Tom Callaway <spot@fedoraproject.org> - 3.8.1-1
|
|
|
|
- update to 3.8.1
|
|
|
|
|
|
|
|
* Mon Jul 25 2016 Tom Callaway <spot@fedoraproject.org> - 3.8.0-2
|
|
|
|
- make static subpackage
|
|
|
|
|
|
|
|
* Tue May 3 2016 Tom Callaway <spot@fedoraproject.org> - 3.8.0-1
|
|
|
|
- initial package
|