]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Apparently on SLES9 the dynamic linker is called (soname'd) ld64.so.1.
authorJulian Seward <jseward@acm.org>
Tue, 14 Feb 2006 21:55:11 +0000 (21:55 +0000)
committerJulian Seward <jseward@acm.org>
Tue, 14 Feb 2006 21:55:11 +0000 (21:55 +0000)
Add a corresponding strcmp redirect.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5650

memcheck/mac_replace_strmem.c

index ad906dd688470096c8fb68be95e92eb15051a344..b79b69bd7f4cbe90e5ff878175cd14ef92e8823f 100644 (file)
@@ -120,6 +120,7 @@ void complain3 ( Char* s, void* dst, const void* src, int n )
 #define  m_libc_so_star          libcZdsoZa                 // libc.so*
 #define  m_ld_linux_so_2         ldZhlinuxZdsoZd2           // ld-linux.so.2
 #define  m_ld_linux_x86_64_so_2  ldZhlinuxZhx86Zh64ZdsoZd2  // ld-linux-x86-64.so.2
+#define  m_ld64_so_1             ld64ZdsoZd1                // ld64.so.1
 
 
 #define STRRCHR(soname, fnname) \
@@ -338,6 +339,7 @@ STRNCMP(m_libc_so_star, strncmp)
 
 STRCMP(m_libc_so_star,         strcmp)
 STRCMP(m_ld_linux_x86_64_so_2, strcmp)
+STRCMP(m_ld64_so_1,            strcmp)
 
 
 #define MEMCHR(soname, fnname) \