mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-28 18:36:50 +00:00
don't fail the build on failing tests on s390(x)
This commit is contained in:
parent
eaf6624384
commit
12ed181598
1 changed files with 17 additions and 3 deletions
20
llvm.spec
20
llvm.spec
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
Name: llvm
|
Name: llvm
|
||||||
Version: 2.8
|
Version: 2.8
|
||||||
Release: 12%{?dist}
|
Release: 13%{?dist}
|
||||||
Summary: The Low Level Virtual Machine
|
Summary: The Low Level Virtual Machine
|
||||||
|
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
|
@ -347,8 +347,19 @@ find examples -name 'Makefile' | xargs -0r rm -f
|
||||||
%check
|
%check
|
||||||
# the Koji build server does not seem to have enough RAM
|
# the Koji build server does not seem to have enough RAM
|
||||||
# for the default 16 threads
|
# for the default 16 threads
|
||||||
make check LIT_ARGS="-s -v -j8"
|
make check LIT_ARGS="-s -v -j8" \
|
||||||
make -C tools/clang/test
|
%ifarch s390 s390x
|
||||||
|
|| :
|
||||||
|
%else
|
||||||
|
%{nil}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
make -C tools/clang/test \
|
||||||
|
%ifarch s390 s390x
|
||||||
|
|| :
|
||||||
|
%else
|
||||||
|
%{nil}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%post libs -p /sbin/ldconfig
|
%post libs -p /sbin/ldconfig
|
||||||
|
@ -463,6 +474,9 @@ exit 0
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%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
|
* Tue Aug 2 2011 Michel Salim <salimma@fedoraproject.org> - 2.8-12
|
||||||
- Depend on libffi to allow the LLVM interpreter to call external functions
|
- Depend on libffi to allow the LLVM interpreter to call external functions
|
||||||
- Build with RTTI enabled, needed by e.g. Rubinius (# 722714)
|
- Build with RTTI enabled, needed by e.g. Rubinius (# 722714)
|
||||||
|
|
Loading…
Reference in a new issue