wmkhoo / taintgrind

A taint-tracking plugin for the Valgrind memory checking tool
GNU General Public License v2.0
249 stars 42 forks source link

Support glibc 2.19 #4

Closed alirazeen closed 10 years ago

alirazeen commented 10 years ago

Please do support glibc 2.19. I tried to do this myself by adding the following to configure.ac

     2.19)
    AC_MSG_RESULT(2.19 family)
    AC_DEFINE([GLIBC_2_19], 1, [Define to 1 if you're using glibc 2.19.x])
    DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
    DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
    DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
    ;;

However, make fails with multiple instances of the same compilation error: "too few arguments to vgPlain_describe_IP"

wmkhoo commented 10 years ago

Updated for Valgrind 3.10.0 support fe2a551e27

alirazeen commented 10 years ago

It works now. Thank you.