From 857fed50cbf2d1a701a5a1a29e124f7e9fb945d5 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 2 Oct 2012 11:20:07 -0700 Subject: [PATCH] Fix MIPS build. ARM and x86 have custom memcpy implementations, but MIPS relies on the generic one, which I recently moved. Change-Id: I9e49243f63b27a4123f2c6623d6286ec82d333c7 --- libc/Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/Android.mk b/libc/Android.mk index 73b8acbbf..cd44f238e 100644 --- a/libc/Android.mk +++ b/libc/Android.mk @@ -479,8 +479,8 @@ libc_common_src_files += \ arch-mips/string/mips_strlen.c libc_common_src_files += \ + bionic/memcmp.c \ string/bcopy.c \ - string/memcmp.c \ string/strcmp.c \ string/strcpy.c \ string/strncmp.c