- Update to 3.6.0
* Fix a regression in arena_chunk_alloc() that caused crashes during small/large allocation if chunk allocation failed. * Fix backtracing for gcc intrinsics-based backtracing by specifying -fno-omit-frame-pointer to gcc. * Use dss allocation precedence for huge allocations as well as small/large allocations. * Testsuite fixes - Drop jemalloc-fix-backtracing.patch, merged upstream. OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/jemalloc?expand=0&rev=23
This commit is contained in:
parent
8771a24478
commit
2c6731dedd
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1a09f2570167ebc5fba4ddcc09176575d8acbb77017faf27797b9ab7f38f349f
|
|
||||||
size 336555
|
|
3
jemalloc-3.6.0.tar.bz2
Normal file
3
jemalloc-3.6.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e16c2159dd3c81ca2dc3b5c9ef0d43e1f2f45b04548f42db12e7c12d7bdf84fe
|
||||||
|
size 338964
|
@ -1,12 +0,0 @@
|
|||||||
Index: jemalloc-3.5.1/configure.ac
|
|
||||||
===================================================================
|
|
||||||
--- jemalloc-3.5.1.orig/configure.ac
|
|
||||||
+++ jemalloc-3.5.1/configure.ac
|
|
||||||
@@ -779,6 +779,7 @@ fi
|
|
||||||
)
|
|
||||||
if test "x$backtrace_method" = "x" -a "x$enable_prof_gcc" = "x1" \
|
|
||||||
-a "x$GCC" = "xyes" ; then
|
|
||||||
+ JE_CFLAGS_APPEND([-fno-omit-frame-pointer])
|
|
||||||
backtrace_method="gcc intrinsics"
|
|
||||||
AC_DEFINE([JEMALLOC_PROF_GCC], [ ])
|
|
||||||
else
|
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 31 16:53:49 UTC 2014 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Update to 3.6.0
|
||||||
|
* Fix a regression in arena_chunk_alloc() that caused crashes
|
||||||
|
during small/large allocation if chunk allocation failed.
|
||||||
|
* Fix backtracing for gcc intrinsics-based backtracing by specifying
|
||||||
|
-fno-omit-frame-pointer to gcc.
|
||||||
|
* Use dss allocation precedence for huge allocations as well as
|
||||||
|
small/large allocations.
|
||||||
|
* Testsuite fixes
|
||||||
|
- Drop jemalloc-fix-backtracing.patch, merged upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 31 09:21:34 UTC 2014 - idonmez@suse.com
|
Mon Mar 31 09:21:34 UTC 2014 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: jemalloc
|
Name: jemalloc
|
||||||
Version: 3.5.1
|
Version: 3.6.0
|
||||||
Release: 0
|
Release: 0
|
||||||
%define lname libjemalloc1
|
%define lname libjemalloc1
|
||||||
Summary: General-purpose scalable concurrent malloc implementation
|
Summary: General-purpose scalable concurrent malloc implementation
|
||||||
@ -27,8 +27,6 @@ Url: http://canonware.com/jemalloc/
|
|||||||
|
|
||||||
#Git-Clone: git://canonware.com/jemalloc
|
#Git-Clone: git://canonware.com/jemalloc
|
||||||
Source: http://www.canonware.com/download/jemalloc/jemalloc-%{version}.tar.bz2
|
Source: http://www.canonware.com/download/jemalloc/jemalloc-%{version}.tar.bz2
|
||||||
Patch1: jemalloc-fix-backtracing.patch
|
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: docbook-xsl-stylesheets
|
BuildRequires: docbook-xsl-stylesheets
|
||||||
BuildRequires: libxslt
|
BuildRequires: libxslt
|
||||||
Requires: %lname = %{version}
|
Requires: %lname = %{version}
|
||||||
@ -66,11 +64,9 @@ malloc(3) implementation.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export EXTRA_CFLAGS="%{optflags} -std=gnu99"
|
export EXTRA_CFLAGS="%{optflags} -std=gnu99"
|
||||||
autoconf
|
|
||||||
%configure --enable-cc-silence \
|
%configure --enable-cc-silence \
|
||||||
--enable-prof
|
--enable-prof
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
Loading…
Reference in New Issue
Block a user