mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
098a657fe4
PI_STATIC_AND_HIDDEN indicates whether accesses to internal linkage variables and hidden visibility variables in a shared object (ld.so) need dynamic relocations (usually R_*_RELATIVE). PI (position independent) in the macro name is a misnomer: a code sequence using GOT is typically position-independent as well, but using dynamic relocations does not meet the requirement. Not defining PI_STATIC_AND_HIDDEN is legacy and we expect that all new ports will define PI_STATIC_AND_HIDDEN. Current ports defining PI_STATIC_AND_HIDDEN are more than the opposite. Change the configure default. No functional change. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
16 lines
506 B
Plaintext
16 lines
506 B
Plaintext
GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
|
# Local configure fragment for sysdeps/nios2.
|
|
|
|
# Nios II big endian is not yet supported.
|
|
AC_CACHE_CHECK([for big endian],
|
|
[libc_cv_nios2_be],
|
|
[AC_EGREP_CPP(yes,[#ifdef __nios2_big_endian__
|
|
yes
|
|
#endif
|
|
], libc_cv_nios2_be=yes, libc_cv_nios2_be=no)])
|
|
if test $libc_cv_nios2_be = yes; then
|
|
AC_MSG_ERROR([Big endian not supported for Nios II])
|
|
fi
|
|
|
|
AC_DEFINE(HIDDEN_VAR_NEEDS_DYNAMIC_RELOC)
|