On Fri, Apr 24, 2015 at 05:22:57PM -0400, Matt Whitlock wrote:
> I think providing an alternative implementation of ttyname_r() in
> missing_syscalls.c won't work. Busybox cannot be statically linked
> when ttyname_r is defined in missing_syscalls.o:
> 
> ld: error: 
> /usr/local/arm-linux-androideabi/bin/../sysroot/usr/lib/libc.a(stubs.o): 
> multiple definition of 'ttyname_r'
> ld: libbb/lib.a(missing_syscalls.o): previous definition here

This is only happening because another function from stubs.o is being
pulled in. Passing -Wl,-t might be able to show the reason. But it's
probably best to #define ttyname_r to something else when providing a
fallback to avoid the problem.

Rich
_______________________________________________
busybox mailing list
busybox@busybox.net
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to