Merge branch 'f15' into f14

This commit is contained in:
Dan Horák 2011-10-11 14:21:51 +02:00
commit 6129e7e67d
1 changed files with 17 additions and 3 deletions

View File

@ -12,7 +12,7 @@
Name: llvm
Version: 2.8
Release: 12%{?dist}
Release: 13%{?dist}
Summary: The Low Level Virtual Machine
Group: Development/Languages
@ -347,8 +347,19 @@ find examples -name 'Makefile' | xargs -0r rm -f
%check
# the Koji build server does not seem to have enough RAM
# for the default 16 threads
make check LIT_ARGS="-s -v -j8"
make -C tools/clang/test
make check LIT_ARGS="-s -v -j8" \
%ifarch s390 s390x
|| :
%else
%{nil}
%endif
make -C tools/clang/test \
%ifarch s390 s390x
|| :
%else
%{nil}
%endif
%post libs -p /sbin/ldconfig
@ -463,6 +474,9 @@ exit 0
%changelog
* Tue Oct 11 2011 Dan Horák <dan[at]danny.cz> - 2.8-13
- don't fail the build on failing tests on s390(x)
* Tue Aug 2 2011 Michel Salim <salimma@fedoraproject.org> - 2.8-12
- Depend on libffi to allow the LLVM interpreter to call external functions
- Build with RTTI enabled, needed by e.g. Rubinius (# 722714)