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 b15663cf14e1bff98533de992e99feba041b1357 (commit) from 1b9e5e9aa8312d696504c20655e97cdb32f94f82 (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 b15663cf14e1bff98533de992e99feba041b1357 Author: Waldemar Brodkorb wbx@openadk.org Date: Thu Mar 5 19:47:26 2015 +0100
fix non-thread compile for xtensa
-----------------------------------------------------------------------
Summary of changes: ldso/ldso/xtensa/dl-tlsdesc.S | 4 ++++ ldso/ldso/xtensa/elfinterp.c | 3 +++ 2 files changed, 7 insertions(+)
diff --git a/ldso/ldso/xtensa/dl-tlsdesc.S b/ldso/ldso/xtensa/dl-tlsdesc.S index a6ebc94..dee4258 100644 --- a/ldso/ldso/xtensa/dl-tlsdesc.S +++ b/ldso/ldso/xtensa/dl-tlsdesc.S @@ -18,6 +18,9 @@
#include <sysdep.h> #include <tls.h> + +#if defined(USE_TLS) && USE_TLS + #include "tlsdesc.h"
@@ -94,3 +97,4 @@ _dl_tlsdesc_dynamic: .size _dl_tlsdesc_dynamic, .-_dl_tlsdesc_dynamic
#endif /* SHARED */ +#endif /* USE_TLS */ diff --git a/ldso/ldso/xtensa/elfinterp.c b/ldso/ldso/xtensa/elfinterp.c index 1397e95..66deb63 100644 --- a/ldso/ldso/xtensa/elfinterp.c +++ b/ldso/ldso/xtensa/elfinterp.c @@ -31,8 +31,11 @@ */
#include "ldso.h" + +#if defined(USE_TLS) && USE_TLS #include "dl-tls.h" #include "tlsdeschtab.h" +#endif
unsigned long _dl_linux_resolver (struct elf_resolve *tpnt, int reloc_entry)
hooks/post-receive