mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-12-01 03:32:55 +00:00
Pin clang's dependency on gcc-c++ to the version used for building
This commit is contained in:
parent
bd716bccdc
commit
facb834aba
1 changed files with 9 additions and 2 deletions
11
llvm.spec
11
llvm.spec
|
@ -3,6 +3,10 @@
|
||||||
# --with doxygen
|
# --with doxygen
|
||||||
# The doxygen docs are HUGE, so they are not built by default.
|
# The doxygen docs are HUGE, so they are not built by default.
|
||||||
|
|
||||||
|
# prior to 3.0, clang header paths are hard-coded and need
|
||||||
|
# adjustment whenever there's a new GCC version
|
||||||
|
%global gcc_version 4.6.3
|
||||||
|
|
||||||
%ifarch s390 s390x sparc64
|
%ifarch s390 s390x sparc64
|
||||||
# No ocaml on these arches
|
# No ocaml on these arches
|
||||||
%bcond_with ocaml
|
%bcond_with ocaml
|
||||||
|
@ -12,7 +16,7 @@
|
||||||
|
|
||||||
Name: llvm
|
Name: llvm
|
||||||
Version: 2.8
|
Version: 2.8
|
||||||
Release: 14%{?dist}
|
Release: 15%{?dist}
|
||||||
Summary: The Low Level Virtual Machine
|
Summary: The Low Level Virtual Machine
|
||||||
|
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
|
@ -108,7 +112,7 @@ License: NCSA
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
Requires: llvm = %{version}-%{release}
|
Requires: llvm = %{version}-%{release}
|
||||||
# clang requires gcc; clang++ gcc-c++
|
# clang requires gcc; clang++ gcc-c++
|
||||||
Requires: gcc-c++
|
Requires: gcc-c++ = %{gcc_version}
|
||||||
|
|
||||||
%description -n clang
|
%description -n clang
|
||||||
clang: noun
|
clang: noun
|
||||||
|
@ -475,6 +479,9 @@ exit 0
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Mar 11 2012 Michel Salim <salimma@fedoraproject.org> - 2.8-15
|
||||||
|
- Pin clang's dependency on gcc-c++ to the version used for building
|
||||||
|
|
||||||
* Sat Nov 12 2011 Michel Salim <salimma@fedoraproject.org> - 2.8-14
|
* Sat Nov 12 2011 Michel Salim <salimma@fedoraproject.org> - 2.8-14
|
||||||
- Add runtime dependency of -devel on libffi-devel
|
- Add runtime dependency of -devel on libffi-devel
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue