Fix missing posix_fadvise64 mips64 static build (BZ #21232)

This patch fixes the missing posix_fadvise64 symbol for static build
required for _FILE_OFFSET_BITS=64 on mips64 build.

Checked on a mips64-linux-gnu build with run-built-tests=no.

	[BZ #21232]
	* sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise64.c: Add
	posix_fadvise64 weak_alias for static build.
This commit is contained in:
Adhemerval Zanella 2017-03-14 16:42:08 -03:00
parent 605c5ef4fb
commit ed7d6072f2
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2017-03-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
[BZ #21232]
* sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise64.c: Add
posix_fadvise64 weak_alias for static build.
2017-03-14 Andreas Schwab <schwab@suse.de> 2017-03-14 Andreas Schwab <schwab@suse.de>
* sysdeps/generic/dl-procinfo.h (_dl_platform_string): Remove. * sysdeps/generic/dl-procinfo.h (_dl_platform_string): Remove.

View File

@ -29,5 +29,7 @@
_strong_alias (__posix_fadvise64_l64, __posix_fadvise64_l32); _strong_alias (__posix_fadvise64_l64, __posix_fadvise64_l32);
compat_symbol (libc, __posix_fadvise64_l32, posix_fadvise64, GLIBC_2_2); compat_symbol (libc, __posix_fadvise64_l32, posix_fadvise64, GLIBC_2_2);
versioned_symbol (libc, __posix_fadvise64_l64, posix_fadvise64, GLIBC_2_3_3); versioned_symbol (libc, __posix_fadvise64_l64, posix_fadvise64, GLIBC_2_3_3);
#else
_weak_alias (posix_fadvise, posix_fadvise64);
#endif #endif
_strong_alias (__posix_fadvise64_l64, posix_fadvise); _strong_alias (__posix_fadvise64_l64, posix_fadvise);