Accepting request 592180 from devel:tools:compiler

OBS-URL: https://build.opensuse.org/request/show/592180
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/llvm?expand=0&rev=98
This commit is contained in:
Dominique Leuenberger 2018-04-02 20:47:24 +00:00 committed by Git OBS Bridge
commit f6792a43dc
2 changed files with 38 additions and 4 deletions

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Mar 29 07:26:34 UTC 2018 - msrb@suse.com
- Update to version 6.0.0.
* Added polly
* Notable changes:
- Retpoline Spectre variant 2 mitigation
- GlobalISel by default for AArch64 at -O0
- improved scheduling on several x86 micro-architectures
- Clang defaults to -std=gnu++14 instead of -std=gnu++98
- support for some upcoming C++2a features
- improved optimizations, new compiler warnings, many bug
fixes, and more.
-------------------------------------------------------------------
Mon Mar 19 12:23:56 UTC 2018 - msrb@suse.com
- Build lldb and python3-lldb metapackages if and only if the real
packages are built. Fixes build on Leap 42.3.
-------------------------------------------------------------------
Wed Jan 24 13:07:14 UTC 2018 - msrb@suse.com

View File

@ -16,9 +16,17 @@
#
%define _sonum 5
%ifarch x86_64
%define has_lldb 1
# python3-lldb%{_sonum} is only built with these distributions (see llvm%{_sonum} package)
%if 0%{?suse_version} > 1320
%define has_lldb_python 1
%endif
%endif
%define _sonum 6
Name: llvm
Version: 5.0.1
Version: 6.0.0
Release: 0
Summary: Low Level Virtual Machine
License: NCSA
@ -37,9 +45,11 @@ BuildRequires: llvm%{_sonum}-devel = %{version}
BuildRequires: llvm%{_sonum}-emacs-plugins = %{version}
BuildRequires: llvm%{_sonum}-gold = %{version}
BuildRequires: llvm%{_sonum}-vim-plugins = %{version}
%ifarch arm x86_64
%if 0%{?has_lldb}
BuildRequires: lldb%{_sonum} = %{version}
BuildRequires: lldb%{_sonum}-devel = %{version}
%endif
%if 0%{?has_lldb_python}
BuildRequires: python3-lldb%{_sonum} = %{version}
%endif
Requires: llvm%{_sonum} = %{version}
@ -274,7 +284,7 @@ echo "This is a dummy package to provide a dependency on the system compiler." >
%defattr(-,root,root,-)
%doc README
%ifarch arm x86_64
%if 0%{?has_lldb}
%files -n lldb
%defattr(-,root,root)
@ -284,6 +294,10 @@ echo "This is a dummy package to provide a dependency on the system compiler." >
%defattr(-,root,root)
%doc README
%endif
%if 0%{?has_lldb_python}
%files -n python3-lldb
%defattr(-,root,root)
%doc README