2016-06-06 14:18:49 +00:00
|
|
|
# If you need to bootstrap this, turn this on.
|
|
|
|
# Otherwise, you have a loop with libcxxabi
|
2020-02-06 20:46:38 +00:00
|
|
|
%global bootstrap 0
|
2021-10-01 19:42:56 +00:00
|
|
|
#global rc_ver 3
|
2019-09-24 04:12:22 +00:00
|
|
|
|
2022-08-04 05:58:01 +00:00
|
|
|
%global libcxx_version 13.0.1
|
2021-06-03 16:37:53 +00:00
|
|
|
%global libcxx_srcdir libcxx-%{libcxx_version}%{?rc_ver:rc%{rc_ver}}.src
|
2016-06-06 14:18:49 +00:00
|
|
|
|
|
|
|
Name: libcxx
|
2021-06-03 16:37:53 +00:00
|
|
|
Version: %{libcxx_version}%{?rc_ver:~rc%{rc_ver}}
|
2021-08-09 17:53:06 +00:00
|
|
|
Release: 1%{?dist}
|
2016-06-06 14:18:49 +00:00
|
|
|
Summary: C++ standard library targeting C++11
|
|
|
|
License: MIT or NCSA
|
|
|
|
URL: http://libcxx.llvm.org/
|
2021-06-03 16:37:53 +00:00
|
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{libcxx_version}%{?rc_ver:-rc%{rc_ver}}/%{libcxx_srcdir}.tar.xz
|
|
|
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{libcxx_version}%{?rc_ver:-rc%{rc_ver}}/%{libcxx_srcdir}.tar.xz.sig
|
2020-12-02 06:55:27 +00:00
|
|
|
Source2: tstellar-gpg-key.asc
|
2020-02-06 19:57:29 +00:00
|
|
|
|
2021-02-25 14:23:27 +00:00
|
|
|
Patch0: 0001-PATCH-libcxx-Remove-monorepo-requirement.patch
|
2020-08-11 15:23:08 +00:00
|
|
|
|
2020-07-20 13:11:15 +00:00
|
|
|
BuildRequires: gcc-c++ llvm-devel cmake llvm-static ninja-build
|
2020-08-11 15:23:08 +00:00
|
|
|
# We need python3-devel for pathfix.py.
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
2021-02-25 22:18:39 +00:00
|
|
|
# The static libc++ links the static abi library in as well
|
|
|
|
BuildRequires: libcxxabi-static
|
2016-06-06 14:18:49 +00:00
|
|
|
BuildRequires: libcxxabi-devel
|
2021-02-25 22:18:39 +00:00
|
|
|
|
|
|
|
%if %{bootstrap} < 1
|
2017-03-03 15:32:33 +00:00
|
|
|
BuildRequires: python3
|
2016-06-06 14:18:49 +00:00
|
|
|
%endif
|
2020-07-20 13:11:15 +00:00
|
|
|
|
2020-08-11 15:23:08 +00:00
|
|
|
|
2020-07-20 13:11:15 +00:00
|
|
|
# For origin certification
|
|
|
|
BuildRequires: gnupg2
|
|
|
|
|
2016-06-06 14:18:49 +00:00
|
|
|
# PPC64 (on EL7) doesn't like this code.
|
|
|
|
# /builddir/build/BUILD/libcxx-3.8.0.src/include/thread:431:73: error: '(9.223372036854775807e+18 / 1.0e+9)' is not a constant expression
|
|
|
|
# _LIBCPP_CONSTEXPR duration<long double> _Max = nanoseconds::max();
|
2016-06-09 13:08:18 +00:00
|
|
|
%if 0%{?rhel}
|
2016-06-06 14:18:49 +00:00
|
|
|
ExcludeArch: ppc64 ppc64le
|
2016-06-09 13:08:18 +00:00
|
|
|
%endif
|
2016-06-06 14:18:49 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
libc++ is a new implementation of the C++ standard library, targeting C++11.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Headers and libraries for libcxx devel
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%if %{bootstrap} < 1
|
|
|
|
Requires: libcxxabi-devel
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
%{summary}.
|
|
|
|
|
2017-04-22 19:55:40 +00:00
|
|
|
%package static
|
|
|
|
Summary: Static libraries for libcxx
|
|
|
|
|
|
|
|
%description static
|
|
|
|
%{summary}.
|
|
|
|
|
2016-06-06 14:18:49 +00:00
|
|
|
%prep
|
2020-07-20 13:11:15 +00:00
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
2020-08-11 15:23:08 +00:00
|
|
|
%autosetup -n %{libcxx_srcdir} -p2
|
|
|
|
|
|
|
|
pathfix.py -i %{__python3} -pn \
|
|
|
|
utils/*.py
|
2016-06-06 14:18:49 +00:00
|
|
|
|
|
|
|
%build
|
2018-03-21 17:30:11 +00:00
|
|
|
|
2021-02-25 22:18:39 +00:00
|
|
|
common_cmake_flags="\
|
|
|
|
%if 0%{?__isa_bits} == 64
|
|
|
|
-DLIBCXX_LIBDIR_SUFFIX:STRING=64 \
|
|
|
|
%endif
|
2016-06-06 14:18:49 +00:00
|
|
|
%if %{bootstrap} < 1
|
|
|
|
-DLIBCXX_CXX_ABI=libcxxabi \
|
|
|
|
-DLIBCXX_CXX_ABI_INCLUDE_PATHS=%{_includedir} \
|
2017-03-03 15:32:33 +00:00
|
|
|
-DPYTHONINTERP_FOUND=ON \
|
|
|
|
-DPYTHON_EXECUTABLE=%{_bindir}/python3 \
|
2016-06-06 14:18:49 +00:00
|
|
|
%endif
|
2021-02-25 22:18:39 +00:00
|
|
|
-DLIBCXX_STANDALONE_BUILD=ON \
|
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo"
|
|
|
|
|
|
|
|
# Build the static libc++.a.
|
|
|
|
# We include the libc++abi symbols.
|
|
|
|
%cmake -GNinja \
|
|
|
|
$common_cmake_flags \
|
|
|
|
-DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=OFF \
|
|
|
|
-DLIBCXX_ENABLE_STATIC=ON \
|
|
|
|
-DLIBCXX_ENABLE_SHARED=OFF \
|
|
|
|
-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=ON \
|
|
|
|
-DLIBCXX_STATICALLY_LINK_ABI_IN_STATIC_LIBRARY=ON \
|
|
|
|
-DLIBCXX_CXX_ABI_LIBRARY_PATH=%{_libdir}
|
|
|
|
|
|
|
|
%cmake_build
|
|
|
|
|
|
|
|
# Copy result libc++.a
|
|
|
|
mkdir results-static
|
|
|
|
find . -name libc++.a -exec cp {} ./results-static \;
|
2016-06-06 14:18:49 +00:00
|
|
|
|
2021-02-25 22:18:39 +00:00
|
|
|
%cmake -GNinja \
|
|
|
|
$common_cmake_flags \
|
|
|
|
-DLIBCXX_STANDALONE_BUILD=ON \
|
|
|
|
%if %{bootstrap} < 1
|
|
|
|
-DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=ON \
|
|
|
|
%endif
|
|
|
|
-DLIBCXX_ENABLE_STATIC=OFF \
|
|
|
|
-DLIBCXX_ENABLE_SHARED=ON \
|
|
|
|
-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=OFF
|
2016-06-06 14:18:49 +00:00
|
|
|
|
2020-07-20 13:11:15 +00:00
|
|
|
%cmake_build
|
2016-06-06 14:18:49 +00:00
|
|
|
|
|
|
|
%install
|
2020-07-20 13:11:15 +00:00
|
|
|
|
|
|
|
%cmake_install
|
2021-02-25 22:18:39 +00:00
|
|
|
install results-static/libc++.a %{buildroot}/%{_libdir}
|
2016-06-06 14:18:49 +00:00
|
|
|
|
2019-01-22 17:39:37 +00:00
|
|
|
%ldconfig_scriptlets
|
2016-06-06 14:18:49 +00:00
|
|
|
|
2021-02-17 19:51:55 +00:00
|
|
|
# Install header files that libcxxabi needs
|
|
|
|
mkdir -p %{buildroot}%{_includedir}/libcxx-internal/
|
|
|
|
install -m 0644 src/include/* %{buildroot}%{_includedir}/libcxx-internal/
|
|
|
|
|
2016-06-06 14:18:49 +00:00
|
|
|
%files
|
|
|
|
%license LICENSE.TXT
|
|
|
|
%doc CREDITS.TXT TODO.TXT
|
|
|
|
%{_libdir}/libc++.so.*
|
|
|
|
|
|
|
|
%files devel
|
2021-02-17 19:51:55 +00:00
|
|
|
%{_includedir}/libcxx-internal/
|
2016-06-06 14:18:49 +00:00
|
|
|
%{_includedir}/c++/
|
|
|
|
%{_libdir}/libc++.so
|
|
|
|
|
2017-04-22 19:55:40 +00:00
|
|
|
%files static
|
|
|
|
%license LICENSE.TXT
|
|
|
|
%{_libdir}/libc++*.a
|
|
|
|
|
|
|
|
|
2016-06-06 14:18:49 +00:00
|
|
|
%changelog
|
2022-08-04 05:58:01 +00:00
|
|
|
* Wed Aug 03 2021 Tom Stellard <tstellar@redhat.com> - 13.0.1-1
|
|
|
|
- 13.0.1 Release
|
|
|
|
|
2021-10-01 19:42:56 +00:00
|
|
|
* Fri Oct 01 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
|
|
|
- 13.0.0 Release
|
|
|
|
|
2021-09-22 23:07:51 +00:00
|
|
|
* Wed Sep 22 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc3-1
|
|
|
|
- 13.0.0-rc3 Release
|
|
|
|
|
2021-08-09 17:53:06 +00:00
|
|
|
* Mon Aug 09 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-1
|
|
|
|
- 13.0.0-rc1 Release
|
|
|
|
|
2021-07-22 11:09:24 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 12.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-14 06:09:20 +00:00
|
|
|
* Tue Jul 13 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1-1
|
|
|
|
- 12.0.1 Release
|
|
|
|
|
2021-06-30 13:31:53 +00:00
|
|
|
* Thu Jul 01 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc3-1
|
|
|
|
- 12.0.1-rc3 Release
|
|
|
|
|
2021-06-03 16:37:53 +00:00
|
|
|
* Thu Jun 03 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc1-1
|
|
|
|
- 12.0.1-rc1 Release
|
|
|
|
|
2021-04-17 03:58:13 +00:00
|
|
|
* Fri Apr 16 2021 Tom Stellard <tstellar@redhat.com> - 12.0.0-1
|
|
|
|
- 12.0.0 Release
|
|
|
|
|
2021-04-08 12:20:05 +00:00
|
|
|
* Thu Apr 08 2021 sguelton@redhat.com - 12.0.0-0.7.rc5
|
|
|
|
- New upstream release candidate
|
|
|
|
|
2021-04-02 10:32:17 +00:00
|
|
|
* Fri Apr 02 2021 sguelton@redhat.com - 12.0.0-0.6.rc4
|
|
|
|
- New upstream release candidate
|
|
|
|
|
2021-03-11 13:54:36 +00:00
|
|
|
* Thu Mar 11 2021 sguelton@redhat.com - 12.0.0-0.5.rc3
|
|
|
|
- LLVM 12.0.0 rc3
|
|
|
|
|
2021-03-09 14:41:13 +00:00
|
|
|
* Tue Mar 09 2021 sguelton@redhat.com - 12.0.0-0.4.rc2
|
|
|
|
- rebuilt
|
|
|
|
|
2021-02-25 22:18:39 +00:00
|
|
|
* Thu Feb 25 2021 Timm Bäder <tbaeder@redhat.com> - 12.0.0-0.3.rc2
|
|
|
|
- Build shared and static libc++ separately
|
|
|
|
- Include libc++abi symbols in static libc++.a
|
|
|
|
|
2021-02-24 08:18:38 +00:00
|
|
|
* Wed Feb 24 2021 sguelton@redhat.com - 12.0.0-0.2.rc2
|
|
|
|
- 12.0.0-rc2 release
|
|
|
|
|
2021-02-17 19:51:55 +00:00
|
|
|
* Wed Feb 17 2021 Tom Stellard <tstellar@redhat.com> - 12.0.0-0.1.rc1
|
|
|
|
- 12.0.0-rc1 Release
|
|
|
|
|
2021-01-26 16:51:36 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 11.1.0-0.3.rc2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-22 22:56:42 +00:00
|
|
|
* Fri Jan 22 2021 Serge Guelton - 11.1.0-0.2.rc2
|
|
|
|
- llvm 11.1.0-rc2 release
|
|
|
|
|
2021-01-14 16:20:38 +00:00
|
|
|
* Thu Jan 14 2021 Serge Guelton - 11.1.0-0.1.rc1
|
|
|
|
- 11.1.0-rc1 release
|
|
|
|
|
2021-01-06 09:43:18 +00:00
|
|
|
* Wed Jan 06 2021 Serge Guelton - 11.0.1-3
|
|
|
|
- LLVM 11.0.1 final
|
|
|
|
|
2020-12-22 15:23:24 +00:00
|
|
|
* Tue Dec 22 2020 sguelton@redhat.com - 11.0.1-2.rc2
|
|
|
|
- llvm 11.0.1-rc2
|
|
|
|
|
2020-12-02 06:55:27 +00:00
|
|
|
* Tue Dec 01 2020 sguelton@redhat.com - 11.0.1-1.rc1
|
|
|
|
- llvm 11.0.1-rc1
|
|
|
|
|
2020-10-15 05:21:26 +00:00
|
|
|
* Thu Oct 15 2020 sguelton@redhat.com - 11.0.0-1
|
|
|
|
- Fix NVR
|
|
|
|
|
2020-10-12 11:30:09 +00:00
|
|
|
* Mon Oct 12 2020 sguelton@redhat.com - 11.0.0-0.5
|
|
|
|
- llvm 11.0.0 - final release
|
|
|
|
|
2020-10-08 09:12:12 +00:00
|
|
|
* Thu Oct 08 2020 sguelton@redhat.com - 11.0.0-0.4.rc6
|
|
|
|
- 11.0.0-rc6
|
|
|
|
|
2020-10-02 07:14:57 +00:00
|
|
|
* Fri Oct 02 2020 sguelton@redhat.com - 11.0.0-0.3.rc5
|
|
|
|
- 11.0.0-rc5 Release
|
|
|
|
|
2020-09-27 13:17:29 +00:00
|
|
|
* Sun Sep 27 2020 sguelton@redhat.com - 11.0.0-0.2.rc3
|
|
|
|
- Fix NVR
|
|
|
|
|
2020-09-24 14:09:42 +00:00
|
|
|
* Thu Sep 24 2020 sguelton@redhat.com - 11.0.0-0.1.rc3
|
|
|
|
- 11.0.0-rc3 Release
|
|
|
|
|
2020-09-01 10:50:15 +00:00
|
|
|
* Tue Sep 01 2020 sguelton@redhat.com - 11.0.0-0.1.rc2
|
|
|
|
- 11.0.0-rc2 Release
|
|
|
|
|
2020-08-11 15:23:08 +00:00
|
|
|
* Tue Aug 11 2020 Tom Stellard <tstellar@redhat.com> - 11.0.0-0.1.rc1
|
|
|
|
- 11.0.0-rc1 Release
|
|
|
|
|
2020-07-28 04:26:31 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-20 13:11:15 +00:00
|
|
|
* Mon Jul 20 2020 sguelton@redhat.com - 10.0.0-2
|
|
|
|
- Use modern cmake macros
|
|
|
|
- Finalize source verification
|
|
|
|
|
2020-03-30 20:56:29 +00:00
|
|
|
* Mon Mar 30 2020 sguelton@redhat.com - 10.0.0-1
|
|
|
|
- 10.0.0 final
|
|
|
|
|
2020-03-25 06:56:26 +00:00
|
|
|
* Wed Mar 25 2020 sguelton@redhat.com - 10.0.0-0.6.rc6
|
|
|
|
- 10.0.0 rc6
|
|
|
|
|
2020-03-20 22:02:21 +00:00
|
|
|
* Fri Mar 20 2020 sguelton@redhat.com - 10.0.0-0.5.rc5
|
|
|
|
- 10.0.0 rc5
|
|
|
|
|
2020-03-15 08:05:17 +00:00
|
|
|
* Sun Mar 15 2020 sguelton@redhat.com - 10.0.0-0.4.rc4
|
|
|
|
- 10.0.0 rc4
|
|
|
|
|
2020-03-05 11:27:40 +00:00
|
|
|
* Thu Mar 05 2020 sguelton@redhat.com - 10.0.0-0.3.rc3
|
|
|
|
- 10.0.0 rc3
|
|
|
|
|
2020-02-14 09:41:11 +00:00
|
|
|
* Fri Feb 14 2020 sguelton@redhat.com - 10.0.0-0.1.rc2
|
|
|
|
- 10.0.0 rc2
|
|
|
|
|
2020-02-06 20:46:38 +00:00
|
|
|
* Thu Feb 6 2020 sguelton@redhat.com - 10.0.0-0.2.rc1
|
|
|
|
- bootstrap off
|
|
|
|
|
2020-02-06 19:57:29 +00:00
|
|
|
* Fri Jan 31 2020 sguelton@redhat.com - 10.0.0-0.1.rc1
|
|
|
|
- 10.0.0 rc1
|
|
|
|
|
2020-01-29 08:50:47 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-16 18:13:36 +00:00
|
|
|
* Thu Jan 16 2020 Tom Stellard <tstellar@redhat.com> - 9.0.1-1
|
|
|
|
- 9.0.1 Release
|
|
|
|
|
2020-01-16 02:22:48 +00:00
|
|
|
* Thu Jan 16 2020 Tom Stellard <tstellar@redhat.com> - 9.0.0-2
|
|
|
|
- Build with gcc on all arches
|
|
|
|
|
2019-09-24 04:12:22 +00:00
|
|
|
* Mon Sep 23 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-1
|
|
|
|
- 9.0.0 Release
|
|
|
|
|
2019-07-25 13:01:22 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-1.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-03-20 23:24:21 +00:00
|
|
|
* Wed Mar 20 2019 sguelton@redhat.com - 8.0.0-1
|
|
|
|
- 8.0.0 final
|
|
|
|
|
2019-03-12 14:15:43 +00:00
|
|
|
* Tue Mar 12 2019 sguelton@redhat.com - 8.0.0-0.4.rc4
|
|
|
|
- 8.0.0 Release candidate 4
|
|
|
|
|
2019-03-04 13:25:38 +00:00
|
|
|
* Mon Mar 4 2019 sguelton@redhat.com - 8.0.0-0.3.rc3
|
|
|
|
- 8.0.0 Release candidate 3
|
|
|
|
|
2019-02-24 14:30:27 +00:00
|
|
|
* Sun Feb 24 2019 sguelton@redhat.com - 8.0.0-0.2.rc2
|
|
|
|
- 8.0.0 Release candidate 2
|
|
|
|
|
|
|
|
* Mon Feb 11 2019 sguelton@redhat.com - 8.0.0-0.1.rc1
|
2019-02-13 15:54:03 +00:00
|
|
|
- 8.0.0 Release candidate 1
|
|
|
|
|
2019-02-06 15:57:24 +00:00
|
|
|
* Wed Feb 06 2019 sguelton@redhat.com - 7.0.1-1
|
|
|
|
- 7.0.1 Release
|
|
|
|
|
2019-02-01 06:53:32 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.1-0.2.rc3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-11-27 10:42:14 +00:00
|
|
|
* Mon Dec 10 2018 sguelton@redhat.com - 7.0.1-0.1.rc3
|
|
|
|
- 7.0.1-rc3 Release
|
|
|
|
|
2018-09-25 13:11:37 +00:00
|
|
|
* Tue Sep 25 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
|
|
|
|
- 7.0.0 Release
|
|
|
|
|
2018-09-12 20:03:23 +00:00
|
|
|
* Wed Sep 12 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.1.rc3
|
|
|
|
- 7.0.0-rc3 Release
|
|
|
|
|
2018-07-13 07:57:12 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-26 16:40:24 +00:00
|
|
|
* Tue Jun 26 2018 Tom Callaway <spot@fedoraproject.org> - 6.0.1-1
|
|
|
|
- update to 6.0.1
|
|
|
|
|
2018-03-21 17:30:11 +00:00
|
|
|
* Wed Mar 21 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-2
|
|
|
|
- Use default LDFLAGS/CXXFLAGS/CFLAGS and filter out flags not supported by clang
|
|
|
|
|
2018-03-14 14:49:33 +00:00
|
|
|
* Wed Mar 14 2018 Tom Callaway <spot@fedoraproject.org> - 6.0.0-1
|
|
|
|
- 6.0.0 final
|
|
|
|
|
2018-02-07 21:24:31 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-0.2.rc1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-29 12:38:15 +00:00
|
|
|
* Sat Jan 20 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
|
|
|
|
- 6.0.0-rc1
|
|
|
|
|
2017-12-21 16:03:16 +00:00
|
|
|
* Thu Dec 21 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
|
|
|
|
- 5.0.1 Release
|
|
|
|
|
2017-09-08 22:19:41 +00:00
|
|
|
* Fri Sep 8 2017 Tom Callaway <spot@fedoraproject.org> - 5.0.0-1
|
|
|
|
- update to 5.0.0
|
|
|
|
|
2017-08-03 01:19:12 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 18:41:09 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-23 16:38:15 +00:00
|
|
|
* Fri Jun 23 2017 Tom Callaway <spot@fedoraproject.org> - 4.0.1-1
|
|
|
|
- update to 4.0.1
|
|
|
|
|
2017-04-22 19:33:04 +00:00
|
|
|
* Sat Apr 22 2017 Tom Callaway <spot@fedoraproject.org> - 4.0.0-1
|
|
|
|
- update to 4.0.0
|
|
|
|
|
2017-04-22 19:29:24 +00:00
|
|
|
* Wed Mar 8 2017 Tom Callaway <spot@fedoraproject.org> - 3.9.1-1
|
|
|
|
- update to 3.9.1
|
|
|
|
|
2017-03-03 15:32:33 +00:00
|
|
|
* Fri Mar 3 2017 Tom Callaway <spot@fedoraproject.org> - 3.9.0-4
|
|
|
|
- LIBCXX_ENABLE_ABI_LINKER_SCRIPT=ON
|
|
|
|
|
2017-03-01 18:09:44 +00:00
|
|
|
* Wed Mar 1 2017 Tom Callaway <spot@fedoraproject.org> - 3.9.0-3
|
|
|
|
- disable bootstrap
|
|
|
|
|
2017-02-21 19:08:41 +00:00
|
|
|
* Tue Feb 21 2017 Dan Horák <dan[at]danny.cz> - 3.9.0-2
|
|
|
|
- apply s390(x) workaround only in Fedora < 26
|
|
|
|
|
2017-02-20 19:52:01 +00:00
|
|
|
* Mon Feb 20 2017 Tom Callaway <spot@fedoraproject.org> - 3.9.0-1
|
|
|
|
- update to 3.9.0 (match clang)
|
|
|
|
|
2017-02-10 18:30:36 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-08-26 18:24:19 +00:00
|
|
|
* Fri Aug 26 2016 Tom Callaway <spot@fedoraproject.org> - 3.8.1-1
|
|
|
|
- update to 3.8.1
|
|
|
|
|
2016-06-09 13:08:18 +00:00
|
|
|
* Thu Jun 09 2016 Dan Horák <dan[at]danny.cz> - 3.8.0-4
|
|
|
|
- exclude Power only in EPEL
|
|
|
|
- default to z10 on s390(x)
|
|
|
|
|
2016-06-06 14:18:49 +00:00
|
|
|
* Thu May 19 2016 Tom Callaway <spot@fedoraproject.org> - 3.8.0-3
|
|
|
|
- use gcc on el7, fedora < 24. use clang on el6 and f24+
|
|
|
|
MAGIC.
|
|
|
|
- bootstrap on
|
|
|
|
|
|
|
|
* Tue May 3 2016 Tom Callaway <spot@fedoraproject.org> - 3.8.0-2
|
|
|
|
- bootstrap off
|
|
|
|
|
|
|
|
* Tue May 3 2016 Tom Callaway <spot@fedoraproject.org> - 3.8.0-1
|
|
|
|
- initial package
|
|
|
|
- bootstrap on
|