From: Andreas Schwab Date: Thu, 16 Jun 2011 01:46:20 +0000 (-0400) Subject: Improve 64-bit build X-Git-Tag: glibc-2.14.1~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe6a22b68c40902e5bdf52c3c29979ec0eb58747;p=thirdparty%2Fglibc.git Improve 64-bit build An imperfect version of fxstatat64 was used in ld.so. (cherry picked from commit ee22793dd0b6c6bcbf341b5324da1af83d07dd13) --- diff --git a/ChangeLog b/ChangeLog index 61655f2f197..a08e0e1dcb1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-06-14 Andreas Schwab + + * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c: New file. + 2011-06-14 Andreas Jaeger * sysdeps/unix/sysv/linux/check_native.c: Include for diff --git a/sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c b/sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c new file mode 100644 index 00000000000..339e5f4335a --- /dev/null +++ b/sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c @@ -0,0 +1,6 @@ +/* In this implementation we do not really care whether the call fails + because of missing kernel support since we do not even call the + function in this case. */ +#undef __ASSUME_ATFCTS +#define __ASSUME_ATFCTS 1 +#include "fxstatat.c"