Accepting request 575200 from devel:libraries:c_c++

- Disable THP for ARM (32 bits). This fix build by passing all tests successfully (forwarded request 574948 from Guillaume_G)

OBS-URL: https://build.opensuse.org/request/show/575200
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jemalloc?expand=0&rev=24
This commit is contained in:
Dominique Leuenberger 2018-02-13 09:27:44 +00:00 committed by Git OBS Bridge
commit f0e46a1414
2 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sat Feb 10 09:52:38 UTC 2018 - guillaume@opensuse.org
- Disable THP for ARM (32 bits). This fix build by passing all
tests successfully
-------------------------------------------------------------------
Wed Oct 4 09:19:52 UTC 2017 - mliska@suse.cz

View File

@ -1,7 +1,7 @@
#
# spec file for package jemalloc
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -84,7 +84,12 @@ if [ -f "%_bindir/gcc-4.8" ]; then
export CC=gcc-4.8
fi
%endif
%configure --enable-prof
%configure \
%ifarch %arm
--disable-thp \
%endif
--enable-prof
make %{?_smp_mflags}
%install