]> sourceware.org Git - systemtap.git/commitdiff
Fixed BZ639344 on s390x by adding '/lib/ld64.so.1' as a supported interpreter.
authorDavid Smith <dsmith@redhat.com>
Tue, 13 Sep 2011 13:59:52 +0000 (08:59 -0500)
committerDavid Smith <dsmith@redhat.com>
Tue, 13 Sep 2011 13:59:52 +0000 (08:59 -0500)
* dwflpp.cxx (iterate_over_libraries): Added '/lib/ld64.so.1' so that
  RHEL6 s390x systems behave correctly.

dwflpp.cxx

index e0264b9657b2fdcd1b6f57e99e65457b239ce799..f3b2d15a3115826a292dca8e8c39e716a0341204 100644 (file)
@@ -1087,6 +1087,7 @@ dwflpp::iterate_over_libraries (void (*callback)(void *object, const char *arg),
   // startswith("/lib/ld") || startswith("/lib64/ld"), and trust that no admin
   // would install untrustworthy loaders in those paths.
   if ((interpreter != "/lib/ld.so.1"     // ppc / s390
+       && interpreter != "/lib/ld64.so.1" // s390x
        && interpreter != "/lib64/ld64.so.1"
        && interpreter != "/lib/ld-linux-ia64.so.2" // ia64
        && interpreter != "/emul/ia32-linux/lib/ld-linux.so.2"
This page took 0.028893 seconds and 5 git commands to generate.