From: Markos Chandras <[email protected]> Signed-off-by: Markos Chandras <[email protected]> --- utils/ldd.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/utils/ldd.c b/utils/ldd.c index e53f360..a95e569 100644 --- a/utils/ldd.c +++ b/utils/ldd.c @@ -63,6 +63,11 @@ #define ELFCLASSM ELFCLASS32 #endif +#if defined(__metag__) +#define MATCH_MACHINE(x) (x == EM_METAG) +#define ELFCLASSM ELFCLASS32 +#endif + #if defined(__mips__) #define MATCH_MACHINE(x) (x == EM_MIPS || x == EM_MIPS_RS3_LE) #define ELFCLASSM ELFCLASS32 -- 1.8.1.2 _______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
