mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-28 10:35:42 +00:00
- PIC is now enabled by default; explicitly disable on %{ix86}
This commit is contained in:
parent
1eb8bb2f36
commit
d3f05fb311
1 changed files with 6 additions and 6 deletions
12
llvm.spec
12
llvm.spec
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
Name: llvm
|
Name: llvm
|
||||||
Version: 2.6
|
Version: 2.6
|
||||||
Release: 0.1.pre1%{?dist}
|
Release: 0.2.pre1%{?dist}
|
||||||
Summary: The Low Level Virtual Machine
|
Summary: The Low Level Virtual Machine
|
||||||
|
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
|
@ -139,9 +139,6 @@ popd
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Note: --enable-pic can be turned off when 2.6 comes out
|
|
||||||
# and up to 2.5, unsafe on 32-bit archs (in our case,
|
|
||||||
# anything but x86_64)
|
|
||||||
# Disabling assertions now, rec. by pure and needed for OpenGTL
|
# Disabling assertions now, rec. by pure and needed for OpenGTL
|
||||||
mkdir obj && cd obj
|
mkdir obj && cd obj
|
||||||
../configure \
|
../configure \
|
||||||
|
@ -150,8 +147,8 @@ mkdir obj && cd obj
|
||||||
--disable-assertions \
|
--disable-assertions \
|
||||||
--enable-debug-runtime \
|
--enable-debug-runtime \
|
||||||
--enable-jit \
|
--enable-jit \
|
||||||
%ifnarch %{ix86}
|
%ifarch %{ix86}
|
||||||
--enable-pic
|
--enable-pic=no
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# FIXME file this
|
# FIXME file this
|
||||||
|
@ -281,6 +278,9 @@ rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.2.pre1
|
||||||
|
- PIC is now enabled by default; explicitly disable on %%{ix86}
|
||||||
|
|
||||||
* Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.1.pre1
|
* Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.1.pre1
|
||||||
- First 2.6 prerelease
|
- First 2.6 prerelease
|
||||||
- Enable Clang front-end
|
- Enable Clang front-end
|
||||||
|
|
Loading…
Reference in a new issue