This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "uClibc-ng - small C library for embedded systems".
The branch, master has been updated via 10f469f6ce1a0c14e4506c42e47e15aa83be2eef (commit) from 0550ecce0e6580c5ad34e9a9a39ff18ccf8774f9 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 10f469f6ce1a0c14e4506c42e47e15aa83be2eef Author: Waldemar Brodkorb wbx@uclibc-ng.org Date: Wed Jul 6 06:08:51 2016 +0200
bfin: allow to build ldd
-----------------------------------------------------------------------
Summary of changes: utils/ldd.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/utils/ldd.c b/utils/ldd.c index f6413c6..5d2c8f4 100644 --- a/utils/ldd.c +++ b/utils/ldd.c @@ -35,6 +35,11 @@ #define ELFCLASSM ELFCLASS32 #endif
+#if defined(__bfin__) +#define MATCH_MACHINE(x) (x == EM_BLACKFIN) +#define ELFCLASSM ELFCLASS32 +#endif + #if defined(__s390__) #define MATCH_MACHINE(x) (x == EM_S390) #define ELFCLASSM ELFCLASS32
hooks/post-receive