Changelog for
valgrind-3.9.0-146.1.x86_64.rpm :
Sun Aug 17 14:00:00 2014 dmuellerAATTsuse.com
- update for ppc64le support (bnc#880334):
- drop: valgrind-3.9.0-merge.patches.from.Paul.McKenney.patch,
valgrind-3.9.0-ppc64le-abiv2.patch
- add: VEX-r2803.diff, VEX-r2808.diff, VEX-r2816.diff
VEX-r2904.diff, VEX-r2910.diff, VEX-r2914.diff, VEX-r2915.diff,
VEX-r2916.diff, r13767.diff, r13770.diff, r14184.diff, r14238.diff,
r14239.diff, r14240.diff, r14246.diff
Sat Jul 26 14:00:00 2014 schwabAATTsuse.de
- Fix patch conflicts.
Wed Jun 18 14:00:00 2014 dmuellerAATTsuse.com
- add VEX-r2858.diff, valgrind-r13948.diff for (bnc#883157)
Sun May 18 14:00:00 2014 schwabAATTsuse.de
- Update aarch64-support.diff, aarch64-VEX-support.diff from svn
Thu Apr 24 14:00:00 2014 dmuellerAATTsuse.com
- add aarch64-support.diff, aarch64-VEX-support.diff: aarch64 support
Tue Feb 18 13:00:00 2014 dmuellerAATTsuse.com
- added patches:
* r2798.diff
Tue Feb 11 13:00:00 2014 schwabAATTsuse.de
- glibc-2.19.patch: add support for glibc 2.19
Mon Jan 13 13:00:00 2014 normandAATTlinux.vnet.ibm.com
- add support of ppc64le architecture
- added patches:
* valgrind-3.9.0-merge.patches.from.Paul.McKenney.patch
* valgrind-3.9.0-ppc64le-abiv2.patch
Fri Jan 3 13:00:00 2014 dmuellerAATTsuse.com
- add armv6-support.diff: Add support for armv6hl
Wed Nov 6 13:00:00 2013 burnusAATTnet-b.de
- update to 3.9.0:
* Support for Intel AVX2 instructions. This is available only on 64
bit code.
* Support for POWER8 (Power ISA 2.07) instructions.
* Initial support for Intel Transactional Synchronization Extensions,
both RTM and HLE.
* Initial support for Hardware Transactional Memory on POWER.
* Improvements in handling of vectorised code, leading to
significantly fewer false error reports. You need to use the flag
- -partial-loads-ok=yes to get the benefits of these changes.
* Better control over the leak checker. It is now possible to
specify which leak kinds (definite/indirect/possible/reachable)
should be displayed.
* Reduced \"possible leak\" reports from the leak checker by the use
of better heuristics.
* Better control of stacktrace acquisition for heap-allocated
blocks.
* Better reporting of leak suppression usage.
* New and modified GDB server monitor features.
* New flag --sigill-diagnostics to control whether a diagnostic
message is printed when the JIT encounters an instruction it can\'t
translate.
* The maximum amount of memory that Valgrind can use on 64 bit
targets has been increased from 32GB to 64GB.
* Additional smaller new features and many bug fixes.
- Remove obsolete raise-segnames-limit.diff,
valgrind-glibc-2.17.patch and valgrind-glibc-2.18.patch.
Tue Aug 13 14:00:00 2013 schwabAATTsuse.de
- valgrind-glibc-2.18.patch: add support for glibc 2.18
Fri Apr 5 14:00:00 2013 idonmezAATTsuse.com
- Add Source URL, see https://en.opensuse.org/SourceUrls
Mon Dec 31 13:00:00 2012 idonmezAATTsuse.com
- Fix last patch
Mon Dec 31 13:00:00 2012 idonmezAATTsuse.com
- Add valgrind-glibc-2.17.patch to fix compilation with glibc 2.17
Thu Oct 4 14:00:00 2012 dmuellerAATTsuse.com
- raise seglimit to make it more useful for some apps
Thu Sep 20 14:00:00 2012 burnusAATTnet-b.de
- update to 3.8.1 (bnc#776211):
* Fixes some assertion failures.
* Support for some missing instructions on ARM.
* Support instructions MOVAPS and TZCNT.
* Bug fixes.
Wed Sep 5 14:00:00 2012 dmuellerAATTsuse.com
- update to 3.8.0 (FATE#314090):
* Support for MIPS32 platforms running Linux. Valgrind has been
tested on MIPS32 and MIPS32r2 platforms running different Debian
Squeeze and MeeGo distributions. Both little-endian and big-endian
cores are supported. The tools Memcheck, Massif and Lackey have
been tested and are known to work. See README.mips for more details.
* Preliminary support for Android running on x86.
* Preliminary (as-yet largely unusable) support for MacOSX 10.8.
* Support for Intel AVX instructions and for AES instructions. This
support is available only for 64 bit code.
* Support for POWER Decimal Floating Point instructions.
* Non-libc malloc implementations are now supported. This is useful
for tools that replace malloc (Memcheck, Massif, DRD, Helgrind).
Using the new option --soname-synonyms, such tools can be informed
that the malloc implementation is either linked statically into the
executable, or is present in some other shared library different
from libc.so. This makes it possible to process statically linked
programs, and programs using other malloc libraries, for example
TCMalloc or JEMalloc.
* For tools that provide their own replacement for malloc et al, the
option --redzone-size=
allows users to specify the size of
the padding blocks (redzones) added before and after each client
allocated block. Smaller redzones decrease the memory needed by
Valgrind. Bigger redzones increase the chance to detect blocks
overrun or underrun. Prior to this change, the redzone size was
hardwired to 16 bytes in Memcheck.
* Memcheck:
- The leak_check GDB server monitor command now can
control the maximum nr of loss records to output.
- Reduction of memory use for applications allocating
many blocks and/or having many partially defined bytes.
- Addition of GDB server monitor command \'block_list\' that lists
the addresses/sizes of the blocks of a leak search loss record.
- Addition of GDB server monitor command \'who_points_at\' that lists
the locations pointing at a block.
- If a redzone size > 0 is given, VALGRIND_MALLOCLIKE_BLOCK now will
detect an invalid access of these redzones, by marking them
noaccess. Similarly, if a redzone size is given for a memory
pool, VALGRIND_MEMPOOL_ALLOC will mark the redzones no access.
This still allows to find some bugs if the user has forgotten to
mark the pool superblock noaccess.
- Performance of memory leak check has been improved, especially in
cases where there are many leaked blocks and/or many suppression
rules used to suppress leak reports.
- Reduced noise (false positive) level on MacOSX 10.6/10.7, due to
more precise analysis, which is important for LLVM/Clang
generated code. This is at the cost of somewhat reduced
performance. Note there is no change to analysis precision or
costs on Linux targets.
* DRD:
- Added even more facilities that can help finding the cause of a data
race, namely the command-line option --ptrace-addr and the macro
DRD_STOP_TRACING_VAR(x). More information can be found in the manual.
- Fixed a subtle bug that could cause false positive data race reports.
* The C++ demangler has been updated so as to work well with C++
compiled by up to at least g++ 4.6.
* Tool developers can make replacement/wrapping more flexible thanks
to the new option --soname-synonyms. This was reported above, but
in fact is very general and applies to all function
replacement/wrapping, not just to malloc-family functions.
* Round-robin scheduling of threads can be selected, using the new
option --fair-sched= yes. Prior to this change, the pipe-based
thread serialisation mechanism (which is still the default) could
give very unfair scheduling. --fair-sched=yes improves
responsiveness of interactive multithreaded applications, and
improves repeatability of results from the thread checkers Helgrind
and DRD.
* For tool developers: support to run Valgrind on Valgrind has been
improved. We can now routinely Valgrind on Helgrind or Memcheck.
* gdbserver now shows the float shadow registers as integer
rather than float values, as the shadow values are mostly
used as bit patterns.
* Increased limit for the --num-callers command line flag to 500.
* Performance improvements for error matching when there are many
suppression records in use.
* Improved support for DWARF4 debugging information (bug 284184).
* Initial support for DWZ compressed Dwarf debug info.
* Improved control over the IR optimiser\'s handling of the tradeoff
between performance and precision of exceptions. Specifically,
- -vex-iropt-precise-memory-exns has been removed and replaced by
- -vex-iropt-register-updates, with extended functionality. This
allows the Valgrind gdbserver to always show up to date register
values to GDB.
* Modest performance gains through the use of translation chaining for
JIT-generated code.
Fri Aug 17 14:00:00 2012 burnusAATTnet-b.de
- Support TZCNT/LZCNT instructions, generated by GCC 4.8,
by falling back to BSF/BSR. (bnc#776211)
Sun Jul 22 14:00:00 2012 ajAATTsuse.de
- Support glibc 2.16.
Mon Jun 4 14:00:00 2012 dmuellerAATTsuse.com
- arch is now armv7hl
Tue May 15 14:00:00 2012 sndirschAATTsuse.com
- add \"BuildRequires: pkgconfig\" so the provides for
\"pkgconfig(valgrind)\" gets created again
Thu May 10 14:00:00 2012 vuntzAATTopensuse.org
- Remove xorg-x11-devel BuildRequires: I can only guess it was
there to make sure the xfree supp files are used, but they are
used anyway by default. This helps resolve a build loop between
libdrm and valgrind.
Thu Apr 26 14:00:00 2012 joop.boonenAATTopensuse.org
- Added patch valgrind-3.7.0-automake-1.11.2.patch to fix automake issue
* See https://bugs.kde.org/show_bug.cgi?id=290719
Thu Dec 29 13:00:00 2011 dmuellerAATTsuse.de
- fix build against glibc 2.15
Mon Dec 19 13:00:00 2011 adrianAATTsuse.de
- build only on armv7l, not armv5
Wed Nov 30 13:00:00 2011 cooloAATTsuse.com
- add automake as buildrequire to avoid implicit dependency
Wed Nov 9 13:00:00 2011 dmuellerAATTsuse.de
- update to 3.7.0 (bnc#724215):
* Support for IBM z/Architecture (s390x) running Linux. Valgrind can
analyse 64-bit programs running on z/Architecture. Most user space
instructions up to and including z10 are supported.
See README.s390 for more details.
* Support for the IBM Power ISA 2.06 (Power7 instructions)
* Further solidification of support for SSE 4.2 in 64-bit mode
* Memcheck:
* - reduction of memory use in some circumstances
* - improved handling of freed memory for finding more errors
* - fix of a longstanding bug that could cause false negatives
* Helgrind:
* - Helgrind: performance improvements and major memory use reductions
* GDB server: Valgrind now has an embedded GDB server. That means it
is possible to control a Valgrind run from GDB, doing all the usual
things that GDB can do (single stepping, breakpoints, examining
data, etc). Tool-specific functionality is also available.
* Over 160 bugs have been fixed.
Mon Oct 24 14:00:00 2011 roAATTsuse.de
- fix build on ppc (32bit)
Sun Oct 2 14:00:00 2011 dmuellerAATTsuse.de
- enable build on %%arm
Fri Aug 19 14:00:00 2011 dmuellerAATTsuse.de
- fix build against glibc 2.14
- require the right version of glibc at runtime (part of fix for bnc#700362)
Tue Jul 5 14:00:00 2011 ajAATTsuse.de
- Support Linux kernel 3.x (bnc#724215)
Wed Jun 22 14:00:00 2011 dmuellerAATTsuse.de
- fix merge error
Sat Jun 18 14:00:00 2011 dmuellerAATTsuse.de
- Improve Valgrind POWER6 and POWER7/P7 support (bnc#700358)
Tue May 17 14:00:00 2011 stefan.bruensAATTrwth-aachen.de
- revert removal for gcc-32bit requirement, breaks valgrinding
32bit code on 64bit archs (bnc#705405)
Mon Apr 11 14:00:00 2011 dmuellerAATTsuse.de
- fix testsuite for s390 (kde#264800, kde#265762, kde#253206)
- Add folding rules for Clz32 and Clz64 (kde#243404)
- Refresh s390x port (kde#243404)
Wed Mar 16 13:00:00 2011 dmuellerAATTsuse.de
- update to 3.6.1 (bnc#679106):
3.6.1 is a bug fix release. It adds support for some SSE4
instructions that were omitted in 3.6.0 due to lack of time. Initial
support for glibc-2.13 has been added. A number of bugs causing
crashing or assertion failures have been fixed.
Fri Oct 22 14:00:00 2010 dmuellerAATTsuse.de
- update to 3.6.0:
3.6.0 is a feature release with many significant improvements and the
usual collection of bug fixes. See the NEWS file for details.
Thu Oct 21 14:00:00 2010 dmuellerAATTsuse.de
- apparently gcc-32bit does not exist on old code streams, but
it seems to work without it as well
Wed Oct 20 14:00:00 2010 dmuellerAATTsuse.de
- disable building docs until I find a way to build them without
network access
Wed Oct 13 14:00:00 2010 dmuellerAATTsuse.de
- add s390x port (FATE#310036)
- update to 3.6.0 snapshot:
- Valgrind runs much faster when the --smc-check=all option is given.
- Cachegrind has a new processing script, cg_diff, which finds the
difference between two profiles. It\'s very useful for evaluating the
performance effects of a change in a program.
Related to this change, the meaning of cg_annotate\'s (rarely-used)
- -threshold option has changed; this is unlikely to affect many people, if
you do use it please see the user manual for details.
- Callgrind now can do branch prediction simulation, similar to Cachegrind.
In addition, it optionally can count the number of executed global bus events.
Both can be used for a better approximation of a \"Cycle Estimation\" as
derived event (you need to update the event formula in KCachegrind yourself).
- Cachegrind and Callgrind now refer to the LL (last-level) cache rather
than the L2 cache. This is to accommodate machines with three levels of
caches -- if Cachegrind/Callgrind auto-detects the cache configuration of
such a machine it will run the simulation as if the L2 cache isn\'t
present. This means the results are less likely to match the true result
for the machine, but Cachegrind/Callgrind\'s results are already only
approximate, and should not be considered authoritative. The results are
still useful for giving a general idea about a program\'s locality.
- Massif has a new option, --pages-as-heap, which is disabled by default.
When enabled, instead of tracking allocations at the level of heap blocks
(as allocated with malloc/new/new[]), it instead tracks memory allocations
at the level of memory pages (as mapped by mmap, brk, etc). Each mapped
page is treated as its own block. Interpreting the page-level output is
harder than the heap-level output, but this option is useful if you want
to account for every byte of memory used by a program.
- Added new memcheck command-line option --show-possibly-lost.
- Support for analyzing programs running under Wine with has been improved.
The header files , and
can now be used in Windows-programs compiled with MinGW
or one of the Microsoft Visual Studio compilers.
- DRD does now have two new command-line options: --free-is-write and
- -trace-alloc. The former allows to detect reading from already freed
memory, and the latter allows to trace all memory allocations and
deallocations.
- Several new annotations have been added in DRD: custom barrier
implementations can now be annotated and benign races on static variables
too.
- The happens before / happens after annotations in DRD have been made more
powerful such that these can now also be used to annotate e.g. a smart
pointer implementation.
Thu Sep 23 14:00:00 2010 dmuellerAATTsuse.de
- increase stack size (bnc#640793)
Fri May 7 14:00:00 2010 dmuellerAATTsuse.de
- fix build for ppc64
Mon Apr 26 14:00:00 2010 dmuellerAATTsuse.de
- handle pthread apps better (bnc#599585)
- prefer CFI for better stack unwinding (bnc#559061)
Fri Mar 26 13:00:00 2010 dmuellerAATTsuse.de
- handle inotify_init1 (bnc#558964)
Wed Jan 6 13:00:00 2010 dmuellerAATTsuse.de
- fix build against glibc 2.11
Wed Dec 2 13:00:00 2009 dmuellerAATTsuse.de
- update and reenable jit-register-unregister.diff
Tue Nov 3 13:00:00 2009 cooloAATTnovell.com
- updated patches to apply with fuzz=0
Tue Sep 8 14:00:00 2009 dmuellerAATTsuse.de
- update to 3.5.0:
* Support for glibc 2.10, gcc 4.5 has been added.
* Improvements and simplifications to Memcheck\'s leak checker.
* Clarification and simplifications in various aspects of Valgrind\'s
text output.
* XML output for Helgrind and Ptrcheck.
* Performance and stability improvements for Helgrind and DRD.
* Genuinely atomic support for x86/amd64/ppc atomic instructions.
* A new experimental tool, BBV, useful for computer architecture
research.
* Improved Wine support, including ability to read Windows PDB
debuginfo.
Fri Mar 13 13:00:00 2009 dmuellerAATTsuse.de
- update to 3.4.1 (bnc#479701):
* 3.4.1 is a bug-fix release that fixes some regressions and
assertion failures in debug info reading in 3.4.0, most notably
incorrect stack traces on amd64-linux on older (glibc-2.3 based)
systems. Various other debug info problems are also fixed. A
number of bugs in the exp-ptrcheck tool introduced in 3.4.0
have been fixed.
Fri Jan 23 13:00:00 2009 dmuellerAATTsuse.de
- update to 3.4.0:
* http://www.valgrind.org/docs/manual/dist.news.html
Sat Nov 22 13:00:00 2008 dmuellerAATTsuse.de
- update suppressions
Wed Nov 19 13:00:00 2008 dmuellerAATTsuse.de
- fix .valgrindrc reading vulnerability (CVE-2008-4865, bnc#445013)
- add support for glibc 2.9
Wed Nov 5 13:00:00 2008 dmuellerAATTsuse.de
- add syscall wrappers for pipe2
Tue Jun 24 14:00:00 2008 schwabAATTsuse.de
- Add fadvice64 wrapper.
Sun Jun 22 14:00:00 2008 dmuellerAATTsuse.de
- update to 3.3.1:
n-i-bz Massif segfaults at exit
n-i-bz Memcheck asserts on Altivec code
n-i-bz fix sizeof bug in Helgrind
n-i-bz check fd on sys_llseek
n-i-bz update syscall lists to kernel 2.6.23.1
n-i-bz support sys_sync_file_range
n-i-bz handle sys_sysinfo, sys_getresuid, sys_getresgid on ppc64-linux
n-i-bz intercept memcpy in 64-bit ld.so\'s
n-i-bz Fix wrappers for sys_{futimesat,utimensat}
n-i-bz Minor false-error avoidance fixes for Memcheck
n-i-bz libmpiwrap.c: add a wrapper for MPI_Waitany
n-i-bz helgrind support for glibc-2.8
n-i-bz partial fix for mc_leakcheck.c:698 assert:
\'lc_shadows[i]->data + lc_shadows[i] ...
n-i-bz Massif/Cachegrind output corruption when programs fork
n-i-bz register allocator fix: handle spill stores correctly
n-i-bz add support for PA6T PowerPC CPUs
126389 vex x86->IR: 0xF 0xAE (FXRSTOR)
158525 ==126389
152818 vex x86->IR: 0xF3 0xAC (repz lodsb)
153196 vex x86->IR: 0xF2 0xA6 (repnz cmpsb)
155011 vex x86->IR: 0xCF (iret)
155091 Warning [...] unhandled DW_OP_ opcode 0x23
156960 ==155901
155528 support Core2/SSSE3 insns on x86/amd64
155929 ms_print fails on massif outputs containing long lines
157665 valgrind fails on shmdt(0) after shmat to 0
157748 support x86 PUSHFW/POPFW
158212 helgrind: handle pthread_rwlock_try{rd,wr}lock.
158425 sys_poll incorrectly emulated when RES==0
158744 vex amd64->IR: 0xF0 0x41 0xF 0xC0 (xaddb)
160907 Support for a couple of recent Linux syscalls
161285 Patch -- support for eventfd() syscall
161378 illegal opcode in debug libm (FUCOMPP)
160136 ==161378
161487 number of suppressions files is limited to 10
162386 ms_print typo in milliseconds time unit for massif
161036 exp-drd: client allocated memory was never freed
162663 signalfd_wrapper fails on 64bit linux
Sun Apr 27 14:00:00 2008 dmuellerAATTsuse.de
- update glibc 2.8 support
Sun Dec 16 13:00:00 2007 dmuellerAATTsuse.de
- readd deprecated #define\'s (#348337)
Tue Dec 11 13:00:00 2007 dmuellerAATTsuse.de
- update to 3.3.0 (final):
* last minute bugfixes
Thu Dec 6 13:00:00 2007 dmuellerAATTsuse.de
- update jit-support patch
Mon Dec 3 13:00:00 2007 dmuellerAATTsuse.de
- update to 3.3.0 RC1:
- Helgrind works again
- Massif has been majorly overhauled
- Cachegrind now does branch-prediction profiling
- New experimental tools Omega and DRD
- Many small refinements to stability, scalability and performance
- Somewhat restructured documentation
- Many bug fixes
Mon Nov 26 13:00:00 2007 dmuellerAATTsuse.de
- fix build against glibc 2.7
Fri Sep 14 14:00:00 2007 dmuellerAATTsuse.de
- fix divisions by zero in massif (#310234)
Wed Sep 12 14:00:00 2007 dmuellerAATTsuse.de
- fix build on ppc64 again
- update suppressions
Fri Aug 24 14:00:00 2007 dmuellerAATTsuse.de
- fix valgrind on x86_64 (#296803)
Tue Aug 21 14:00:00 2007 dmuellerAATTsuse.de
- suppression update
Mon Jul 23 14:00:00 2007 dmuellerAATTsuse.de
- update suppression file
Mon Jul 9 14:00:00 2007 dmuellerAATTsuse.de
- support JIT runtimes (#289490)
Tue Jul 3 14:00:00 2007 dmuellerAATTsuse.de
- update suppression file (#287090)
Wed May 23 14:00:00 2007 dmuellerAATTsuse.de
- build against glibc 2.6
Thu Apr 5 14:00:00 2007 dmuellerAATTsuse.de
- split into -devel subpackage
Fri Mar 30 14:00:00 2007 dmuellerAATTsuse.de
- add patch to track undefinedness in environment (#249676)
Tue Jan 30 13:00:00 2007 dmuellerAATTsuse.de
- update to 3.2.3:
* fixes two serious regressions introduced in 3.2.2
* intercept stpcpy_chk (#234247)
- fix openat syscall wrapper (#240225)
Thu Jan 25 13:00:00 2007 dmuellerAATTsuse.de
- intercept stpcpy_chk and memrchr as well (#234347)
Tue Jan 23 13:00:00 2007 dmuellerAATTsuse.de
- switch to gcc-32bit on x86_64
Mon Jan 22 13:00:00 2007 dmuellerAATTsuse.de
- update to 3.2.2:
* many fixes for ppc 32/64 (#fate 301640)
Tue Oct 17 14:00:00 2006 dmuellerAATTsuse.de
- disable omega plugin for ppc/ppc64
Mon Oct 16 14:00:00 2006 dmuellerAATTsuse.de
- update to 3.2 BRANCH:
* support glibc 2.5
* update suppressions
- add omega plugin
Fri Sep 15 14:00:00 2006 dmuellerAATTsuse.de
- update to 3.2.1:
* suppresion updates
Fri Sep 15 14:00:00 2006 dmuellerAATTsuse.de
- update to 3.2.1rc1:
* about 36 bugfixes
Wed Sep 13 14:00:00 2006 stbinnerAATTsuse.de
- fix build with < Factory
Mon Aug 28 14:00:00 2006 dmuellerAATTsuse.de
- fix suppressions
- update drd plugin
Thu Aug 24 14:00:00 2006 dmuellerAATTsuse.de
- add experimental drd plugin
- fix build on x86_64
Wed Aug 2 14:00:00 2006 dmuellerAATTsuse.de
- also fix multibyte NOP parsing for x86_64
Tue Aug 1 14:00:00 2006 dmuellerAATTsuse.de
- add patch to handle multibyte NOPs as generated by
recent binutils
Wed Jun 7 14:00:00 2006 dmuellerAATTsuse.de
- update to 3.2.0 final
* only marginal changes since rc1
Tue May 30 14:00:00 2006 dmuellerAATTsuse.de
- update to 3.2.0 rc1:
* ppc64 support
* callgrind now integrated part
* massive performance improvements
* lots of emulation fixlets
Thu Mar 16 13:00:00 2006 dmuellerAATTsuse.de
- update to 3.1.1 (FATE #300493)
Mon Mar 6 13:00:00 2006 dmuellerAATTsuse.de
- various updates from branch to fix PPC32 support
Mon Feb 6 13:00:00 2006 dmuellerAATTsuse.de
- Fix GDB support
Mon Feb 6 13:00:00 2006 dmuellerAATTsuse.de
- Reduce BuildRequires
Wed Jan 25 13:00:00 2006 mlsAATTsuse.de
- converted neededforbuild to BuildRequires
Wed Jan 4 13:00:00 2006 dmuellerAATTsuse.de
- update to 3.1 branch
Fri Dec 9 13:00:00 2005 dmuellerAATTsuse.de
- fix strict-aliasing issue
Mon Nov 28 13:00:00 2005 dmuellerAATTsuse.de
- 3.1.0 final update
Mon Nov 21 13:00:00 2005 dmuellerAATTsuse.de
- 3.1.0 RC1 update
Thu Nov 10 13:00:00 2005 dmuellerAATTsuse.de
- update to 3.1 SVN
Tue Nov 8 13:00:00 2005 dmuellerAATTsuse.de
- add hack to make valgrind work with apps that require executable stack
Thu Sep 15 14:00:00 2005 dmuellerAATTsuse.de
- update 3.0.1 final
Wed Aug 24 14:00:00 2005 dmuellerAATTsuse.de
- make massif work again
Sun Aug 21 14:00:00 2005 dmuellerAATTsuse.de
- fix trace-children=yes failure
- add default suppressions for SL 10
Mon Aug 15 14:00:00 2005 dmuellerAATTsuse.de
- regenerate VEX offset headers, otherwise it just hangs
Fri Aug 12 14:00:00 2005 dmuellerAATTsuse.de
- update to 3.0 branch to make it work on non-SSE platforms (#104181)
Fri Aug 5 14:00:00 2005 dmuellerAATTsuse.de
- initial package of 3.0