- update to 2.15:

* Mikael Simberg and Tom "spot" Callaway have pointed out the
    missing symbols issue when linking PPC or i386
    builds.
  * Roman Geissler has contributed a fix to nasty initialization
    bug introduced in 2.13 (see github issue #1452 for one example
    where it fails).
  * spinlock delay support now has proper windows support.
    Instead of simply sleeping, it uses WaitOnAddress (which is
    basically windows equivalent of futexes). This improvement was
    contributed by Lennox Ho.
  * we now have basic QNX support (basic malloc + heap profiler)
    championed by Xiang.Lin. Thanks! Do note, however, that QNX
    doesn't provide SIGPROF ticks, so there will be no cpu profiler
    support on this OS.
  * several people have contributed various improvements to our
    cmake build: Lennox Ho, Sergey Fedorov, Mateusz Jakub Fila. But
    do note that cmake build is still incomplete and best-effort.
  * Julian Schroeder have fixed generic_fp incompatibility with
    ARM pointer auth.
  * Mateusz Jakub Fila has contributed implementation of
    mallocinfo2 function (64-bit version of mallinfo).
  * Lennox Ho has contributed the ability to disable malloc
    functions patching on windows when TCMALLOC_DISABLE_REPLACEMENT=1
    environment variable is set.
  * User poljak181 has contributed a fix to infinite recursion in
    some cases of malloc hooks (or user-replaced operator new) and
    MallocExtension::instance().
  * Sergey Fedorov has contributed a fix to use MAP_ANON on some
    older OSes without MAP_ANONYMOUS.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gperftools?expand=0&rev=66
This commit is contained in:
Dirk Mueller 2024-01-28 12:34:53 +00:00 committed by Git OBS Bridge
parent f223ab0b02
commit c8cc694860
4 changed files with 102 additions and 64 deletions

BIN
gperftools-2.13.tar.gz (Stored with Git LFS)

Binary file not shown.

3
gperftools-2.15.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c69fef855628c81ef56f12e3c58f2b7ce1f326c0a1fe783e5cae0b88cbbe9a80
size 1511014

View File

@ -1,3 +1,41 @@
-------------------------------------------------------------------
Sun Jan 28 12:32:55 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 2.15:
* Mikael Simberg and Tom "spot" Callaway have pointed out the
missing symbols issue when linking PPC or i386
builds.
* Roman Geissler has contributed a fix to nasty initialization
bug introduced in 2.13 (see github issue #1452 for one example
where it fails).
* spinlock delay support now has proper windows support.
Instead of simply sleeping, it uses WaitOnAddress (which is
basically windows equivalent of futexes). This improvement was
contributed by Lennox Ho.
* we now have basic QNX support (basic malloc + heap profiler)
championed by Xiang.Lin. Thanks! Do note, however, that QNX
doesn't provide SIGPROF ticks, so there will be no cpu profiler
support on this OS.
* several people have contributed various improvements to our
cmake build: Lennox Ho, Sergey Fedorov, Mateusz Jakub Fila. But
do note that cmake build is still incomplete and best-effort.
* Julian Schroeder have fixed generic_fp incompatibility with
ARM pointer auth.
* Mateusz Jakub Fila has contributed implementation of
mallocinfo2 function (64-bit version of mallinfo).
* Lennox Ho has contributed the ability to disable malloc
functions patching on windows when TCMALLOC_DISABLE_REPLACEMENT=1
environment variable is set.
* User poljak181 has contributed a fix to infinite recursion in
some cases of malloc hooks (or user-replaced operator new) and
MallocExtension::instance().
* Sergey Fedorov has contributed a fix to use MAP_ANON on some
older OSes without MAP_ANONYMOUS.
* the way we detect working ucontext->pc extraction method was
reworked and is now fully compile-time as opposed to
config-time. This means no more duplication and mismatches
between autoconf and cmake bits in this area.
-------------------------------------------------------------------
Fri Sep 29 08:10:03 UTC 2023 - Paolo Stivanin <info@paolostivanin.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package gperftools
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,7 +17,7 @@
Name: gperftools
Version: 2.13
Version: 2.15
Release: 0
Summary: Performance Tools for C++
License: BSD-3-Clause