patches/glibc/ports-2.12.1/660-debug-readlink_chk-readklinkat_chk.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 17 22:43:07 2011 +0200 (2011-07-17)
changeset 2893 a8a65758664f
permissions -rw-r--r--
cc/gcc: do not use the core pass-2 to build the baremetal compiler

In case we build a baremetal compiler, use the standard passes:
- core_cc is used to build the C library;
- as such, it is meant to run on build, not host;
- the final compiler is meant to run on host;

As the current final compiler step can not build a baremetal compiler,
call the core backend from the final step.

NB: Currently, newlib is built during the start_files pass, so we have
to have a core compiler by then... Once we can build the baremetal
compiler from the final cc step, then we can move the newlib build to
the proper step, and then get rid of the core pass-1 static compiler...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@2437
     1
diff -dur glibc-cvs-2.9.orig/debug/readlink_chk.c glibc-cvs-2.9/debug/readlink_chk.c
yann@2437
     2
--- glibc-cvs-2.9.orig/debug/readlink_chk.c	2005-03-01 01:41:15.000000000 +0100
yann@2437
     3
+++ glibc-cvs-2.9/debug/readlink_chk.c	2009-06-01 10:59:37.000000000 +0200
yann@2437
     4
@@ -25,7 +25,7 @@
yann@2437
     5
 
yann@2437
     6
 
yann@2437
     7
 ssize_t
yann@2437
     8
-__readlink_chk (const char *path, void *buf, size_t len, size_t buflen)
yann@2437
     9
+__readlink_chk (const char *path, char *buf, size_t len, size_t buflen)
yann@2437
    10
 {
yann@2437
    11
   if (len > buflen)
yann@2437
    12
     __chk_fail ();
yann@2437
    13
diff -dur glibc-cvs-2.9.orig/debug/readlinkat_chk.c glibc-cvs-2.9/debug/readlinkat_chk.c
yann@2437
    14
--- glibc-cvs-2.9.orig/debug/readlinkat_chk.c	2006-04-24 18:56:12.000000000 +0200
yann@2437
    15
+++ glibc-cvs-2.9/debug/readlinkat_chk.c	2009-06-01 11:07:26.000000000 +0200
yann@2437
    16
@@ -21,7 +21,7 @@
yann@2437
    17
 
yann@2437
    18
 
yann@2437
    19
 ssize_t
yann@2437
    20
-__readlinkat_chk (int fd, const char *path, void *buf, size_t len,
yann@2437
    21
+__readlinkat_chk (int fd, const char *path, char *buf, size_t len,
yann@2437
    22
 		  size_t buflen)
yann@2437
    23
 {
yann@2437
    24
   if (len > buflen)