[PATCH 5/5] Bionic lacks transparent LFS migrations; provide a workaround

Matt Whitlock busybox at mattwhitlock.name
Fri Apr 24 21:41:33 UTC 2015


On Friday, 24 April 2015, at 4:12 am, Matt Whitlock wrote:
> +#if defined(__BIONIC__) && _FILE_OFFSET_BITS == 64

The preprocessor needs to test whether _FILE_OFFSET_BITS is defined before using it in an expression.

#if defined(__BIONIC__) && defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64


More information about the busybox mailing list