patches/uClibc/0.9.28.2/000-string-functions.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
yann@1
     1
Give preference to target-optimised functions over glibc's ones,
yann@1
     2
which in turn ahave precedence over generic ones.
yann@1
     3
yann@1
     4
--- uClibc.orig/libc/Makefile	2005-07-20 08:10:44.000000000 +0200
yann@1
     5
+++ uclibc/libc/Makefile	2005-07-28 13:33:40.000000000 +0200
yann@1
     6
@@ -59,7 +59,7 @@
yann@1
     7
 	$(AR) dN 2 $(LIBNAME) $$objs && \
yann@1
     8
 	$(AR) dN 2 $(LIBNAME) $$objs
yann@1
     9
 	@for objfile in obj.signal \
yann@1
    10
-	                obj.string.generic obj.string.$(TARGET_ARCH) obj.string \
yann@1
    11
+	                obj.string obj.string.generic obj.string.$(TARGET_ARCH) \
yann@1
    12
 	                obj.sysdeps.common obj.sysdeps.$(TARGET_ARCH) ; do \
yann@1
    13
 		if [ -e $$objfile ] ; then \
yann@1
    14
 			echo $(AR) $(ARFLAGS) $(LIBNAME) $$objfile ; \