On Friday, 24 April 2015, at 5:42 pm, Matt Whitlock wrote: > This solves some of the problems arising from Bionic's off_t being 32 bits > wide despite _FILE_OFFSET_BITS==64. See BusyBox bug #6908.
I found an issue with this patch: certain stdio functions were segfaulting. It was because <stdio.h> was being included after off_t had already been redefined to off64_t, and this was causing some function prototypes and structure definitions to diverge from their counterparts in Bionic's libc. I have a revision of the patch forthcoming to address this issue. _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
