[Buildroot] [PATCH] toolchain: Allow ld64.so linker

Anton Blanchard anton at samba.org
Mon Dec 2 06:23:11 UTC 2013


From: Jeremy Kerr <jk at ozlabs.org>
    
Expand the glibc dynamic linker check to allow ld64.so.
    
Signed-off-by: Jeremy Kerr <jk at ozlabs.org>
Signed-off-by: Anton Blanchard <anton at samba.org>
---

diff --git a/toolchain/helpers.mk b/toolchain/helpers.mk
index a8944ce..faa9d90 100644
--- a/toolchain/helpers.mk
+++ b/toolchain/helpers.mk
@@ -204,7 +204,7 @@ check_glibc_rpc_feature = \
 #
 check_glibc = \
 	SYSROOT_DIR="$(strip $1)"; \
-	if test `find $${SYSROOT_DIR}/ -maxdepth 2 -name 'ld-linux*.so.*' -o -name 'ld.so.*' | wc -l` -eq 0 ; then \
+	if test `find $${SYSROOT_DIR}/ -maxdepth 2 -name 'ld-linux*.so.*' -o -name 'ld.so.*' -o -name 'ld64.so.*' | wc -l` -eq 0 ; then \
 		echo "Incorrect selection of the C library"; \
 		exit -1; \
 	fi; \


More information about the buildroot mailing list