|
From: Petar J. <mip...@gm...> - 2012-07-23 11:11:56
|
Hi everyone, Valgrind has detected store-data-below-stack-pointer case in glibc for MIPS. This was corrected a few weeks ago in glibc: http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=76b1f93b0416aae7aa4356188ad08e9216187616;hp=f17ac40d7cb8e8c462476b6ab703262f6b8f6da8 yet, anyone using Valgrind with any of the existing Linux distributions will see the warnings in glibc. We can obviously add a suppression like: Index: glibc-2.X.supp.in =================================================================== --- glibc-2.X.supp.in (revision 12699) +++ glibc-2.X.supp.in (working copy) @@ -236,3 +236,12 @@ Memcheck:Cond fun:_dl_relocate_object } + +##----------------------------------------------------------------------## +# Debian Linux on mips32 +{ + glibc-@GLIBC_VERSION@-on-MIPS32 + Memcheck:Addr4 + obj:*/lib*/ld-@GLIBC_VERSION@*.so* + obj:*/lib*/ld-@GLIBC_VERSION@*.so* +} yet, my question is if this approach is advisable or something else can be done. Or we live with that until all distributions get the updated glibc? What do you say? Petar |