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 e63d716d4b39402294a5f5fbb34e17e094f17748 (commit) from 3b49fd31dc219d537de2b99f9a0382061165be95 (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 e63d716d4b39402294a5f5fbb34e17e094f17748 Author: Waldemar Brodkorb w.brodkorb@deubert.it Date: Sun Feb 21 22:33:30 2016 +0100
arm: allow to build with DODEBUG=y
Avoids following linking error: /usr/lib/gcc/arm-openadk-linux-uclibceabihf/5.3.0/libgcc.a(unwind-arm.o): In function `unwind_phase2': ../w-gcc-5.3.0-1/gcc-5.3.0/libgcc/unwind-arm-common.inc:289: undefined reference to `abort' /usr/lib/gcc/arm-openadk-linux-uclibceabihf/5.3.0/libgcc.a(unwind-arm.o): In function `unwind_phase2_forced': ../w-gcc-5.3.0-1/gcc-5.3.0/libgcc/unwind-arm-common.inc:346: undefined reference to `memcpy' collect2: error: ld returned 1 exit status
-----------------------------------------------------------------------
Summary of changes: ldso/ldso/Makefile.in | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/ldso/ldso/Makefile.in b/ldso/ldso/Makefile.in index 75c2a06..d85646a 100644 --- a/ldso/ldso/Makefile.in +++ b/ldso/ldso/Makefile.in @@ -14,6 +14,13 @@ ifneq ($(TARGET_ARCH),arc) CFLAGS-rtld += -fno-omit-frame-pointer endif
+ifeq ($(DODEBUG),y) +ifeq ($(TARGET_ARCH),arm) +# This stuff will not work with -funwind-tables / -fasynchronous-unwind-tables +CFLAGS-rtld += -fno-unwind-tables -fno-asynchronous-unwind-tables +endif +endif + CFLAGS-rtld += -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) -I$(top_srcdir)ldso/include -I$(top_srcdir)ldso/ldso CFLAGS-rtld += -DUCLIBC_RUNTIME_PREFIX="$(RUNTIME_PREFIX)" -DUCLIBC_LDSO="$(UCLIBC_LDSO)"
hooks/post-receive