Browse Source

add __thumb__ check

Mike Frysinger 18 years ago
parent
commit
7e67e3cc23
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/ldd.c

+ 1 - 1
utils/ldd.c

@@ -51,7 +51,7 @@
 #include <dmalloc.h>
 #endif
 
-#if defined(__arm__)
+#if defined(__arm__) || defined(__thumb__)
 #define MATCH_MACHINE(x) (x == EM_ARM)
 #define ELFCLASSM	ELFCLASS32
 #endif