Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

valgrind-3.15.0-lp152.3.3 RPM for ppc64le

From OpenSuSE Ports Leap 15.2 for ppc64le

Name: valgrind Distribution: openSUSE:Leap:15.2:PowerPC / ports
Version: 3.15.0 Vendor: openSUSE
Release: lp152.3.3 Build date: Sat May 16 09:26:31 2020
Group: Development/Tools/Debuggers Build host: obs-power9-06
Size: 33526323 Source RPM: valgrind-3.15.0-lp152.3.3.src.rpm
Packager: https://bugs.opensuse.org
Url: http://valgrind.org/
Summary: Memory Management Debugger
Valgrind checks all memory operations in an application, like read,
write, malloc, new, free, and delete. Valgrind can find uses of
uninitialized memory, access to already freed memory, overflows,
illegal stack operations, memory leaks, and any illegal
new/malloc/free/delete commands. Another program in the package is
"cachegrind," a profiler based on the valgrind engine.

To use valgrind you should compile your application with "-g -O0"
compiler options. Afterwards you can use it with:

valgrind --tool=memcheck --sloppy-malloc=yes --leak-check=yes
--db-attach=yes my_application, for example.

More valgrind options can be listed via "valgrind --help". There is
also complete documentation in the /usr/share/doc/packages/valgrind/
directory. A debugged application runs slower and needs much more
memory, but is usually still usable. Valgrind is still in development,
but it has been successfully used to optimize several KDE applications.

Provides

Requires

License

GPL-2.0-or-later AND GFDL-1.2-only

Changelog

* Thu Mar 12 2020 Dirk Mueller <dmueller@suse.com>
  - add 0001-Fix-makefile-consistency-check.patch
    0001-s390x-Add-models-z14-and-z14-ZR1.patch
    0001-s390x-Clean-up-s390-check-opcodes.pl.patch
    0001-s390x-Add-CPU-model-for-z15.patch (bsc#1165834)
* Tue Jan 28 2020 Guillaume GARDET <guillaume.gardet@opensuse.org>
  - Disable %check on %arm as it never passed - boo#1130395
* Sun Jan 19 2020 Stefan Brüns <stefan.bruens@rwth-aachen.de>
  - Add support for PR_CAPBSET_READ/DROP syscalls. Fixes false
    error messages with latest libcap 2.30.
    * 0001-Add-newer-constants-for-prctl-syscall.patch
    * 0002-Add-support-for-PR_CAPBSET_READ-and-_DROP-syscalls.patch
* Wed Nov 27 2019 Dirk Mueller <dmueller@suse.com>
  - remove jit-register-unregister.diff (fails patch not applied check)
* Tue Oct 29 2019 Dirk Mueller <dmueller@suse.com>
  - move s390-*xml files to main package (bsc#1147071)
* Tue Oct 22 2019 Stefan Brüns <stefan.bruens@rwth-aachen.de>
  - Use _multibuild for creating the client-headers subpackage. As
    the headers are just copied over, the package has no substantial
    build dependencies.
* Thu Oct 17 2019 Stefan Brüns <stefan.bruens@rwth-aachen.de>
  - Move the BSD-style licensed client headers to a subpackage.
    Packages only requiring e.g. valgrind.h during build no longer
    need the full valgrind and valgrind-devel packages then.
  - Clean up documentation a bit:
    + use %build_cond, drop unused docbook_4 BuildRequires
    + remove the Postscript Valgrind manual in favor of the PDF one.
  - Add GFDL-1.2 to the License, relevant for man pages and Valgrind
    PDF/HTML manual.
* Wed May 08 2019 Dirk Mueller <dmueller@suse.com>
  - update to 3.15.0 (fate#327402) (jira SLE-5861):
    3.15.0 is a feature release with many improvements and the usual collection of
    bug fixes.
    This release supports X86/Linux, AMD64/Linux, ARM32/Linux, ARM64/Linux,
    PPC32/Linux, PPC64BE/Linux, PPC64LE/Linux, S390X/Linux, MIPS32/Linux,
    MIPS64/Linux, ARM/Android, ARM64/Android, MIPS32/Android, X86/Android,
    X86/Solaris, AMD64/Solaris and AMD64/MacOSX 10.12.  There is also preliminary
    support for X86/macOS 10.13 and AMD64/macOS 10.13.
    * ==================== CORE CHANGES ===================
    * The XTree Massif output format now makes use of the information obtained
    when specifying --read-inline-info=yes.
    * amd64 (x86_64): the RDRAND and F16C insn set extensions are now supported.
    * ==================== TOOL CHANGES ====================
    * DHAT:
    - DHAT been thoroughly overhauled, improved, and given a GUI.  As a result,
      it has been promoted from an experimental tool to a regular tool.  Run it
      with --tool=dhat instead of --tool=exp-dhat.
    - DHAT now prints only minimal data when the program ends, instead writing
      the bulk of the profiling data to a file.  As a result, the --show-top-n
      and --sort-by options have been removed.
    - Profile results can be viewed with the new viewer, dh_view.html.  When
      a run ends, a short message is printed, explaining how to view the result.
    - See the documentation for more details.
    * Cachegrind:
    - cg_annotate has a new option, --show-percs, which prints percentages next
      to all event counts.
    * Callgrind:
    - callgrind_annotate has a new option, --show-percs, which prints percentages
      next to all event counts.
    - callgrind_annotate now inserts commas in call counts, and
      sort the caller/callee lists in the call tree.
    * Massif:
    - The default value for --read-inline-info is now "yes" on
      Linux/Android/Solaris. It is still "no" on other OS.
    * Memcheck:
    - The option --xtree-leak=yes (to output leak result in xtree format)
      automatically activates the option --show-leak-kinds=all, as xtree
      visualisation tools such as kcachegrind can in any case select what kind
      of leak to visualise.
    - There has been further work to avoid false positives.  In particular,
      integer equality on partially defined inputs (C == and !=) is now handled
      better.
  - remove 0001-Bug-385411-s390x-Add-z13-vector-floating-point-suppo.patch
    0001-Bug-385411-s390x-Tests-and-internals-for-z13-vector-.patch
    0001-Bug-397187-s390x-Add-vector-register-support-for-vgd.patch
    0001-Bug-399444-s390x-Drop-unnecessary-check-in-s390_irge.patch
    0001-Bug-400490-s390x-Fix-register-allocation-for-VRs-vs-.patch
    0001-Bug-400491-s390x-Sign-extend-immediate-operand-of-LO.patch
    0001-Bug-402519-POWER-3.0-addex-instruction-incorrectly-i.patch
    0001-Bug-403552-s390x-Fix-vector-facility-bit-number.patch
    0001-s390x-more-fixes.patch
    Implement-emulated-system-registers.-Fixes-392146.patch (all upstream)
* Wed Apr 24 2019 Martin Liška <mliska@suse.cz>
  - Disable LTO (boo#1133288).
* Tue Feb 19 2019 Dirk Mueller <dmueller@suse.com>
  - add 0001-Bug-385411-s390x-Add-z13-vector-floating-point-suppo.patch
    0001-Bug-385411-s390x-Tests-and-internals-for-z13-vector-.patch
    0001-Bug-399444-s390x-Drop-unnecessary-check-in-s390_irge.patch
    0001-Bug-403552-s390x-Fix-vector-facility-bit-number.patch (bsc#1124111)
* Sat Feb 09 2019 schwab@suse.de
  - Don't package files twice on ppc64
* Wed Jan 16 2019 Michal Suchanek <msuchanek@suse.de>
  - Fix POWER9 addex instruction emulation (bsc#1121025).
    0001-Bug-402519-POWER-3.0-addex-instruction-incorrectly-i.patch
* Fri Jan 11 2019 Dirk Mueller <dmueller@suse.com>
  - split into a -32bit subpackage, fix buildrequires for older distros
* Thu Dec 06 2018 Bernhard Wiedemann <bwiedemann@suse.com>
  - drop unreproducible unused .a files to make the package build
    reproducible (boo#1118163)
* Sun Nov 25 2018 olaf@aepfle.de
  - update valgrind.xen.patch to branch bug390553-20181125-ddfc274b2
* Thu Nov 22 2018 Dirk Mueller <dmueller@suse.com>
  - build against Toolchain module for SLE12
  - add 0001-Bug-397187-s390x-Add-vector-register-support-for-vgd.patch
    0001-Bug-400490-s390x-Fix-register-allocation-for-VRs-vs-.patch,
    0001-Bug-400491-s390x-Sign-extend-immediate-operand-of-LO.patch,
    0001-s390x-more-fixes.patch,
    Implement-emulated-system-registers.-Fixes-392146.patch (FATE#326355)
  - enable check (poo#36751)
* Wed Nov 21 2018 Dirk Mueller <dmueller@suse.com>
  - update to 3.14.0 (bsc#1114575, FATE#326355):
    see http://www.valgrind.org/docs/manual/dist.news.html
    * The new option --keep-debuginfo=no|yes (default no) can be used to retain
      debug info for unloaded code.  This allows saved stack traces (e.g. for
      memory leaks) to include file/line info for code that has been dlclose'd (or
      similar).  See the user manual for more information and known limitations.
    * Ability to specify suppressions based on source file name and line number.
    * Majorly overhauled register allocator.  No end-user changes, but the JIT
      generates code a bit more quickly now.
    * Preliminary support for macOS 10.13 has been added.
    * mips: support for MIPS32/MIPS64 Revision 6 has been added.
    * mips: support for MIPS SIMD architecture (MSA) has been added.
    * mips: support for MIPS N32 ABI has been added.
    * s390: partial support for vector instructions (integer and string) has been
      added.
    * Helgrind: Addition of a flag
    - -delta-stacktrace=no|yes [yes on linux amd64/x86]
      which specifies how full history stack traces should be computed.
      Setting this to =yes can speed up Helgrind by 25% when using
    - -history-level=full.
    * Memcheck: reduced false positive rate for optimised code created by Clang 6
      / LLVM 6 on x86, amd64 and arm64.  In particular, Memcheck analyses code
      blocks more carefully to determine where it can avoid expensive definedness
      checks without loss of precision.  This is controlled by the flag
    - -expensive-definedness-checks=no|auto|yes [auto].
    * Valgrind is now buildable with link-time optimisation (LTO).  A new
      configure option --enable-lto=yes allows building Valgrind with LTO.  If the
      toolchain supports it, this produces a smaller/faster Valgrind (up to 10%).
      Note that if you are doing Valgrind development, --enable-lto=yes massively
      slows down the build process.
  - remove epoll-wait-fix.patch,
    Fix-access-to-time-base-register-to-return-64-bits.patch,
    0001-Accept-read-only-PT_LOAD-segments-and-.rodata.patch (upstream),
* Tue Sep 25 2018 Michal Suchanek <msuchanek@suse.com>
  - valgrind truncates powerpc timebase to 32-bits (bsc#1109589).
    Fix-access-to-time-base-register-to-return-64-bits.patch
* Thu Sep 13 2018 dmueller@suse.com
  - valgrind.xen.patch: refresh
* Tue Aug 28 2018 stefan.bruens@rwth-aachen.de
  - Filter out -m64 from optflags, breaks build of 32 bit parts
  - Cleanup, remove suse_version < 1100 conditionals
  - Use %license for COPYING, COPYING.DOCS
* Mon Aug 27 2018 stefan.bruens@rwth-aachen.de
  - Fix missing debuginfo with current binutils, boo#1103239
    0001-Accept-read-only-PT_LOAD-segments-and-.rodata.patch
* Fri Jun 08 2018 mbrugger@suse.com
  - ad Implement-emulated-system-registers.-Fixes-392146.patch (bsc#1086543)
* Thu Feb 22 2018 olaf@aepfle.de
  - add valgrind.xen.patch to handle Xen 4.10 (fate#321394, fate#322686)
* Mon Oct 30 2017 dmueller@suse.com
  - add epoll-wait-fix.patch (bsc#1064958)
* Sun Jun 25 2017 dmueller@suse.com
  - update to 3.13.0 (fate#321455):
    - remove fix-ppcl64-clobber-list.patch
    3.13.0 is a feature release with many improvements and the
    usual collection of bug fixes.
    See http://valgrind.org/docs/manual/dist.news.html
* Tue Apr 25 2017 mliska@suse.cz
  - Add fix-ppcl64-clobber-list.patch: fix clobber list on ppcl64le,
    it's backport of upstream patch.
* Tue Dec 27 2016 foss@grueninger.de
  - update to 3.12.0 (bsc#1017016, FATE#321455)
    * 3.12.0 is a feature release with many improvements and the usual
    collection of bug fixes. The full changelog can be found at
    http://valgrind.org/docs/manual/dist.news.html
    or
    /usr/share/doc/packages/valgrind/NEWS
  - droped patches which are part of the release:
    gcc5.patch, r15702.diff, r15792.diff, r15802.diff, svn-r15766.patch,
    vex-r3197.diff, vex-r3210.diff, vex-r3213.diff
* Thu Oct 20 2016 stefan.bruens@rwth-aachen.de
  - add vex-r3213.diff (kde#356393)
* Sat May 28 2016 dmueller@suse.com
  - add vex-r3197.diff (bsc#981447)
* Wed Apr 20 2016 jslaby@suse.com
  - The previous did not help, remove -strong first.
* Tue Apr 19 2016 meissner@suse.com
  - also remove -fstack-protector-strong from the CFLAGS
* Fri Apr 01 2016 dmueller@suse.com
  - add r15702.diff, r15792.diff, vex-r3210.diff, r15802.diff (fate#319608)
* Mon Feb 22 2016 schwab@suse.de
  - glibc-version.patch: removed, no longer needed
* Mon Feb 15 2016 dmueller@suse.com
  - update to 3.11.0 (fate#319608):
    * 3.11.0 is a feature release with many improvements and the usual
    collection of bug fixes.
  - replace gcc-version.patch with gcc5.patch: This is the upstream
    version
  - drop valgrind-linux-4.0.patch: merged upstream
  - add svn-r15766.patch: Fix valgrind with recent kernels
  - jit-register-unregister.diff commented out, needs porting
* Thu Aug 06 2015 schwab@suse.de
  - glibc-version.patch: Add support for glibc 2.22.
* Fri Apr 24 2015 dimstar@opensuse.org
  - Add valgrind-linux-4.0.patch: Fix build with linux kernel 4.0+.
    Taken from svn, rev 14955.
* Thu Apr 02 2015 mpluskal@suse.com
  - Cleanup spec file with spec-cleaner
  - Update to 3.10.1
    * bugfix release (for full list of solved issues see NEWS file)
* Thu Feb 12 2015 rguenther@suse.com
  - gcc-version.patch: Add support for GCC 5.
* Mon Feb 09 2015 schwab@suse.de
  - glibc-version.patch: Add support for glibc 2.21.

Files

/usr/bin/callgrind_annotate
/usr/bin/callgrind_control
/usr/bin/cg_annotate
/usr/bin/cg_diff
/usr/bin/cg_merge
/usr/bin/ms_print
/usr/bin/valgrind
/usr/bin/valgrind-di-server
/usr/bin/valgrind-listener
/usr/bin/vgdb
/usr/lib/valgrind
/usr/lib/valgrind/dh_view.css
/usr/lib/valgrind/dh_view.html
/usr/lib/valgrind/dh_view.js
/usr/lib64/valgrind
/usr/lib64/valgrind/32bit-core-valgrind-s1.xml
/usr/lib64/valgrind/32bit-core-valgrind-s2.xml
/usr/lib64/valgrind/32bit-core.xml
/usr/lib64/valgrind/32bit-linux-valgrind-s1.xml
/usr/lib64/valgrind/32bit-linux-valgrind-s2.xml
/usr/lib64/valgrind/32bit-linux.xml
/usr/lib64/valgrind/32bit-sse-valgrind-s1.xml
/usr/lib64/valgrind/32bit-sse-valgrind-s2.xml
/usr/lib64/valgrind/32bit-sse.xml
/usr/lib64/valgrind/64bit-avx-valgrind-s1.xml
/usr/lib64/valgrind/64bit-avx-valgrind-s2.xml
/usr/lib64/valgrind/64bit-avx.xml
/usr/lib64/valgrind/64bit-core-valgrind-s1.xml
/usr/lib64/valgrind/64bit-core-valgrind-s2.xml
/usr/lib64/valgrind/64bit-core.xml
/usr/lib64/valgrind/64bit-linux-valgrind-s1.xml
/usr/lib64/valgrind/64bit-linux-valgrind-s2.xml
/usr/lib64/valgrind/64bit-linux.xml
/usr/lib64/valgrind/64bit-sse-valgrind-s1.xml
/usr/lib64/valgrind/64bit-sse-valgrind-s2.xml
/usr/lib64/valgrind/64bit-sse.xml
/usr/lib64/valgrind/amd64-avx-coresse-valgrind.xml
/usr/lib64/valgrind/amd64-avx-coresse.xml
/usr/lib64/valgrind/amd64-avx-linux-valgrind.xml
/usr/lib64/valgrind/amd64-avx-linux.xml
/usr/lib64/valgrind/amd64-coresse-valgrind.xml
/usr/lib64/valgrind/amd64-linux-valgrind.xml
/usr/lib64/valgrind/arm-core-valgrind-s1.xml
/usr/lib64/valgrind/arm-core-valgrind-s2.xml
/usr/lib64/valgrind/arm-core.xml
/usr/lib64/valgrind/arm-vfpv3-valgrind-s1.xml
/usr/lib64/valgrind/arm-vfpv3-valgrind-s2.xml
/usr/lib64/valgrind/arm-vfpv3.xml
/usr/lib64/valgrind/arm-with-vfpv3-valgrind.xml
/usr/lib64/valgrind/arm-with-vfpv3.xml
/usr/lib64/valgrind/cachegrind-ppc64le-linux
/usr/lib64/valgrind/callgrind-ppc64le-linux
/usr/lib64/valgrind/default.supp
/usr/lib64/valgrind/dhat-ppc64le-linux
/usr/lib64/valgrind/drd-ppc64le-linux
/usr/lib64/valgrind/exp-bbv-ppc64le-linux
/usr/lib64/valgrind/exp-sgcheck-ppc64le-linux
/usr/lib64/valgrind/getoff-ppc64le-linux
/usr/lib64/valgrind/helgrind-ppc64le-linux
/usr/lib64/valgrind/i386-coresse-valgrind.xml
/usr/lib64/valgrind/i386-linux-valgrind.xml
/usr/lib64/valgrind/lackey-ppc64le-linux
/usr/lib64/valgrind/massif-ppc64le-linux
/usr/lib64/valgrind/memcheck-ppc64le-linux
/usr/lib64/valgrind/mips-cp0-valgrind-s1.xml
/usr/lib64/valgrind/mips-cp0-valgrind-s2.xml
/usr/lib64/valgrind/mips-cp0.xml
/usr/lib64/valgrind/mips-cpu-valgrind-s1.xml
/usr/lib64/valgrind/mips-cpu-valgrind-s2.xml
/usr/lib64/valgrind/mips-cpu.xml
/usr/lib64/valgrind/mips-fpu-valgrind-s1.xml
/usr/lib64/valgrind/mips-fpu-valgrind-s2.xml
/usr/lib64/valgrind/mips-fpu.xml
/usr/lib64/valgrind/mips-linux-valgrind.xml
/usr/lib64/valgrind/mips-linux.xml
/usr/lib64/valgrind/mips64-cp0-valgrind-s1.xml
/usr/lib64/valgrind/mips64-cp0-valgrind-s2.xml
/usr/lib64/valgrind/mips64-cp0.xml
/usr/lib64/valgrind/mips64-cpu-valgrind-s1.xml
/usr/lib64/valgrind/mips64-cpu-valgrind-s2.xml
/usr/lib64/valgrind/mips64-cpu.xml
/usr/lib64/valgrind/mips64-fpu-valgrind-s1.xml
/usr/lib64/valgrind/mips64-fpu-valgrind-s2.xml
/usr/lib64/valgrind/mips64-fpu.xml
/usr/lib64/valgrind/mips64-linux-valgrind.xml
/usr/lib64/valgrind/mips64-linux.xml
/usr/lib64/valgrind/none-ppc64le-linux
/usr/lib64/valgrind/power-altivec-valgrind-s1.xml
/usr/lib64/valgrind/power-altivec-valgrind-s2.xml
/usr/lib64/valgrind/power-altivec.xml
/usr/lib64/valgrind/power-core-valgrind-s1.xml
/usr/lib64/valgrind/power-core-valgrind-s2.xml
/usr/lib64/valgrind/power-core.xml
/usr/lib64/valgrind/power-fpu-valgrind-s1.xml
/usr/lib64/valgrind/power-fpu-valgrind-s2.xml
/usr/lib64/valgrind/power-fpu.xml
/usr/lib64/valgrind/power-linux-valgrind-s1.xml
/usr/lib64/valgrind/power-linux-valgrind-s2.xml
/usr/lib64/valgrind/power-linux.xml
/usr/lib64/valgrind/power-vsx-valgrind-s1.xml
/usr/lib64/valgrind/power-vsx-valgrind-s2.xml
/usr/lib64/valgrind/power-vsx.xml
/usr/lib64/valgrind/power64-core-valgrind-s1.xml
/usr/lib64/valgrind/power64-core-valgrind-s2.xml
/usr/lib64/valgrind/power64-core.xml
/usr/lib64/valgrind/power64-core2-valgrind-s1.xml
/usr/lib64/valgrind/power64-core2-valgrind-s2.xml
/usr/lib64/valgrind/power64-linux-valgrind-s1.xml
/usr/lib64/valgrind/power64-linux-valgrind-s2.xml
/usr/lib64/valgrind/power64-linux.xml
/usr/lib64/valgrind/powerpc-altivec32l-valgrind.xml
/usr/lib64/valgrind/powerpc-altivec32l.xml
/usr/lib64/valgrind/powerpc-altivec64l-valgrind.xml
/usr/lib64/valgrind/powerpc-altivec64l.xml
/usr/lib64/valgrind/s390-acr-valgrind-s1.xml
/usr/lib64/valgrind/s390-acr-valgrind-s2.xml
/usr/lib64/valgrind/s390-acr.xml
/usr/lib64/valgrind/s390-fpr-valgrind-s1.xml
/usr/lib64/valgrind/s390-fpr-valgrind-s2.xml
/usr/lib64/valgrind/s390-fpr.xml
/usr/lib64/valgrind/s390-vx-valgrind-s1.xml
/usr/lib64/valgrind/s390-vx-valgrind-s2.xml
/usr/lib64/valgrind/s390-vx.xml
/usr/lib64/valgrind/s390x-core64-valgrind-s1.xml
/usr/lib64/valgrind/s390x-core64-valgrind-s2.xml
/usr/lib64/valgrind/s390x-core64.xml
/usr/lib64/valgrind/s390x-generic-valgrind.xml
/usr/lib64/valgrind/s390x-generic.xml
/usr/lib64/valgrind/s390x-linux64-valgrind-s1.xml
/usr/lib64/valgrind/s390x-linux64-valgrind-s2.xml
/usr/lib64/valgrind/s390x-linux64.xml
/usr/lib64/valgrind/s390x-vx-linux-valgrind.xml
/usr/lib64/valgrind/s390x-vx-linux.xml
/usr/lib64/valgrind/vgpreload_core-ppc64le-linux.so
/usr/lib64/valgrind/vgpreload_dhat-ppc64le-linux.so
/usr/lib64/valgrind/vgpreload_drd-ppc64le-linux.so
/usr/lib64/valgrind/vgpreload_exp-sgcheck-ppc64le-linux.so
/usr/lib64/valgrind/vgpreload_helgrind-ppc64le-linux.so
/usr/lib64/valgrind/vgpreload_massif-ppc64le-linux.so
/usr/lib64/valgrind/vgpreload_memcheck-ppc64le-linux.so
/usr/share/doc/packages/valgrind
/usr/share/doc/packages/valgrind/AUTHORS
/usr/share/doc/packages/valgrind/NEWS
/usr/share/doc/packages/valgrind/README
/usr/share/doc/packages/valgrind/README.aarch64
/usr/share/doc/packages/valgrind/README.android
/usr/share/doc/packages/valgrind/README.android_emulator
/usr/share/doc/packages/valgrind/README.mips
/usr/share/doc/packages/valgrind/README.s390
/usr/share/doc/packages/valgrind/README.solaris
/usr/share/doc/packages/valgrind/README_DEVELOPERS
/usr/share/doc/packages/valgrind/README_DEVELOPERS_processes
/usr/share/doc/packages/valgrind/README_MISSING_SYSCALL_OR_IOCTL
/usr/share/doc/packages/valgrind/README_PACKAGERS
/usr/share/doc/packages/valgrind/html
/usr/share/doc/packages/valgrind/html/FAQ.html
/usr/share/doc/packages/valgrind/html/QuickStart.html
/usr/share/doc/packages/valgrind/html/bbv-manual.html
/usr/share/doc/packages/valgrind/html/cg-manual.html
/usr/share/doc/packages/valgrind/html/cl-format.html
/usr/share/doc/packages/valgrind/html/cl-manual.html
/usr/share/doc/packages/valgrind/html/design-impl.html
/usr/share/doc/packages/valgrind/html/dh-manual.html
/usr/share/doc/packages/valgrind/html/dist.authors.html
/usr/share/doc/packages/valgrind/html/dist.html
/usr/share/doc/packages/valgrind/html/dist.news.html
/usr/share/doc/packages/valgrind/html/dist.news.old.html
/usr/share/doc/packages/valgrind/html/dist.readme-android.html
/usr/share/doc/packages/valgrind/html/dist.readme-android_emulator.html
/usr/share/doc/packages/valgrind/html/dist.readme-developers.html
/usr/share/doc/packages/valgrind/html/dist.readme-mips.html
/usr/share/doc/packages/valgrind/html/dist.readme-missing.html
/usr/share/doc/packages/valgrind/html/dist.readme-packagers.html
/usr/share/doc/packages/valgrind/html/dist.readme-s390.html
/usr/share/doc/packages/valgrind/html/dist.readme-solaris.html
/usr/share/doc/packages/valgrind/html/dist.readme.html
/usr/share/doc/packages/valgrind/html/drd-manual.html
/usr/share/doc/packages/valgrind/html/faq.html
/usr/share/doc/packages/valgrind/html/hg-manual.html
/usr/share/doc/packages/valgrind/html/images
/usr/share/doc/packages/valgrind/html/images/dh-tree.png
/usr/share/doc/packages/valgrind/html/images/home.png
/usr/share/doc/packages/valgrind/html/images/kcachegrind_xtree.png
/usr/share/doc/packages/valgrind/html/images/next.png
/usr/share/doc/packages/valgrind/html/images/prev.png
/usr/share/doc/packages/valgrind/html/images/up.png
/usr/share/doc/packages/valgrind/html/index.html
/usr/share/doc/packages/valgrind/html/license.gfdl.html
/usr/share/doc/packages/valgrind/html/license.gpl.html
/usr/share/doc/packages/valgrind/html/licenses.html
/usr/share/doc/packages/valgrind/html/lk-manual.html
/usr/share/doc/packages/valgrind/html/manual-core-adv.html
/usr/share/doc/packages/valgrind/html/manual-core.html
/usr/share/doc/packages/valgrind/html/manual-intro.html
/usr/share/doc/packages/valgrind/html/manual-writing-tools.html
/usr/share/doc/packages/valgrind/html/manual.html
/usr/share/doc/packages/valgrind/html/mc-manual.html
/usr/share/doc/packages/valgrind/html/ms-manual.html
/usr/share/doc/packages/valgrind/html/nl-manual.html
/usr/share/doc/packages/valgrind/html/quick-start.html
/usr/share/doc/packages/valgrind/html/sg-manual.html
/usr/share/doc/packages/valgrind/html/tech-docs.html
/usr/share/doc/packages/valgrind/html/vg_basic.css
/usr/share/doc/packages/valgrind/valgrind_manual.pdf
/usr/share/licenses/valgrind
/usr/share/licenses/valgrind/COPYING
/usr/share/licenses/valgrind/COPYING.DOCS
/usr/share/man/man1/callgrind_annotate.1.gz
/usr/share/man/man1/callgrind_control.1.gz
/usr/share/man/man1/cg_annotate.1.gz
/usr/share/man/man1/cg_diff.1.gz
/usr/share/man/man1/cg_merge.1.gz
/usr/share/man/man1/ms_print.1.gz
/usr/share/man/man1/valgrind-di-server.1.gz
/usr/share/man/man1/valgrind-listener.1.gz
/usr/share/man/man1/valgrind.1.gz
/usr/share/man/man1/vgdb.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:13:28 2024