patches/gcc/4.2.4/230-libbackend_dep_gcov-iov.h.patch
author Zoltan Devai <zdevai@gmail.com>
Wed Oct 28 12:03:38 2009 +0100 (2009-10-28)
changeset 1602 1ba79f2126df
parent 687 b2b6b1d46aa1
permissions -rw-r--r--
libc/uClibc: fix building on system with recent glibc

While trying to build a toolchain with ct-ng 1.5.0,
arm-unknown-linux-uclibcgnueabi target,
I get the following error:

[INFO ] Installing C library headers
[EXTRA] Copying sources to build dir
[EXTRA] Applying configuration
[EXTRA] Building headers
[EXTRA] Installing headers
[ERROR] extra/scripts/unifdef.c:209: error: conflicting types for 'getline'
[ERROR] make[2]: *** [extra/scripts/unifdef] Error 1
[ERROR] Build failed in step 'Installing C library headers'

The following patch solves the problem.
(It's a backport of this uClibc commit:
http://git.uclibc.org/uClibc/commit/?id=49e81cada73616864b9b31df0aeb6961c30f5a6e
)

[--SNIP from another mail--]
AFAIK this is a problem since glibc 2.10.
yann@687
     1
diff -durN gcc-4.2.1.orig/gcc/Makefile.in gcc-4.2.1/gcc/Makefile.in
yann@687
     2
--- gcc-4.2.1.orig/gcc/Makefile.in	2007-05-31 17:37:38.000000000 +0200
yann@687
     3
+++ gcc-4.2.1/gcc/Makefile.in	2007-08-03 20:36:14.000000000 +0200
yann@687
     4
@@ -2660,7 +2660,7 @@
yann@687
     5
 # FIXME: writing proper dependencies for this is a *LOT* of work.
yann@687
     6
 libbackend.o : $(OBJS-common:.o=.c) $(out_file) \
yann@687
     7
   insn-config.h insn-flags.h insn-codes.h insn-constants.h \
yann@687
     8
-  insn-attr.h  $(DATESTAMP) $(BASEVER) $(DEVPHASE)
yann@687
     9
+  insn-attr.h  $(DATESTAMP) $(BASEVER) $(DEVPHASE) gcov-iov.h
yann@687
    10
 	$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
yann@687
    11
 	  -DTARGET_NAME=\"$(target_noncanonical)\" \
yann@687
    12
 	  -DLOCALEDIR=\"$(localedir)\" \