From ccfb27c19e4c2aab4db77ff1092ed9f5a1f065a6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 29 Nov 2005 02:42:52 +0000 Subject: Paul Brook writes: I'm getting the following build failure on arm-linux: LD libuClibc-0.9.28.so libc/libc_so.a(glob.os): In function `collated_compare':glob.c:(.text+0x1f8): undefined reference to `__strcoll' The patch below fixes it. --- libc/string/arm/strcmp.S | 1 + 1 file changed, 1 insertion(+) (limited to 'libc/string') diff --git a/libc/string/arm/strcmp.S b/libc/string/arm/strcmp.S index e572cbe68..6913906ee 100644 --- a/libc/string/arm/strcmp.S +++ b/libc/string/arm/strcmp.S @@ -49,3 +49,4 @@ __strcmp: .size __strcmp,.-__strcmp .weak strcoll ; strcoll = strcmp +.global __strcoll ; __strcoll = strcoll -- cgit v1.2.3