]> Git Repo - uclibc-ng.git/commitdiff
ldd: Add ARC support
authorVineet Gupta <[email protected]>
Fri, 13 Dec 2013 09:19:21 +0000 (14:49 +0530)
committerBernhard Reutner-Fischer <[email protected]>
Fri, 20 Dec 2013 13:38:23 +0000 (14:38 +0100)
Signed-off-by: Vineet Gupta <[email protected]>
Signed-off-by: Bernhard Reutner-Fischer <[email protected]>
utils/ldd.c

index a95e56975194a4f2b684953b328360b5bd8cc911..a12acd2533bea635edcf5e1ab525c9de89ee3ae9 100644 (file)
 #define ELFCLASSM      ELFCLASS64
 #endif
 
+#if defined(__arc__)
+#define MATCH_MACHINE(x) (x == EM_ARCOMPACT)
+#define ELFCLASSM      ELFCLASS32
+#endif
+
 #if defined(__arm__) || defined(__thumb__)
 #define MATCH_MACHINE(x) (x == EM_ARM)
 #define ELFCLASSM      ELFCLASS32
This page took 0.025661 seconds and 4 git commands to generate.