Re: svn commit: r351093 - head/libexec/rtld-elf/rtld-libc

2019-08-15 Thread Kyle Evans
On Thu, Aug 15, 2019 at 12:35 PM Kyle Evans  wrote:
>
> Author: kevans
> Date: Thu Aug 15 17:35:24 2019
> New Revision: 351093
> URL: https://svnweb.freebsd.org/changeset/base/351093
>
> Log:
>   rtld-elf: fix build with xtoolchain-llvm90
>
>   strstr ends up using bcmp when compiled with llvm90; pull it in from libc
>   as well.
>
>   MFC after:3 days
>

Reviewed by: arichardson, kib
Differential Revision: https://reviews.freebsd.org/D21274
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r351093 - head/libexec/rtld-elf/rtld-libc

2019-08-15 Thread Kyle Evans
Author: kevans
Date: Thu Aug 15 17:35:24 2019
New Revision: 351093
URL: https://svnweb.freebsd.org/changeset/base/351093

Log:
  rtld-elf: fix build with xtoolchain-llvm90
  
  strstr ends up using bcmp when compiled with llvm90; pull it in from libc
  as well.
  
  MFC after:3 days

Modified:
  head/libexec/rtld-elf/rtld-libc/Makefile.inc

Modified: head/libexec/rtld-elf/rtld-libc/Makefile.inc
==
--- head/libexec/rtld-elf/rtld-libc/Makefile.incThu Aug 15 17:32:39 
2019(r351092)
+++ head/libexec/rtld-elf/rtld-libc/Makefile.incThu Aug 15 17:35:24 
2019(r351093)
@@ -40,7 +40,7 @@ CFLAGS.errlst.c+=-I${LIBC_SRCTOP}/include
 
 # Use the string and memory .o files from libc instead of rebuilding them (they
 # might be using optimized assembly and duplicating that logic here is 
awkward).
-_libc_string_objects=  bcopy memchr memcmp memcpy memmove stpncpy strcat \
+_libc_string_objects=  bcmp bcopy memchr memcmp memcpy memmove stpncpy strcat \
 strchr strcmp stpcpy strcpy strcspn strdup strlcat strlcpy strlen strncmp \
 strncpy strrchr strsep strspn strstr strtok
 # Also use all the syscall .o files from libc_nossp_pic:
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"