From 7c7971f5df049cfec2e1d5eaee4795de0e439030 Mon Sep 17 00:00:00 2001 From: David Smith Date: Tue, 13 Sep 2011 08:59:52 -0500 Subject: [PATCH] Fixed BZ639344 on s390x by adding '/lib/ld64.so.1' as a supported interpreter. * dwflpp.cxx (iterate_over_libraries): Added '/lib/ld64.so.1' so that RHEL6 s390x systems behave correctly. --- dwflpp.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/dwflpp.cxx b/dwflpp.cxx index e0264b965..f3b2d15a3 100644 --- a/dwflpp.cxx +++ b/dwflpp.cxx @@ -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" -- 2.43.5