* sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_runtime_setup):
[glibc.git] / sysdeps / powerpc / powerpc32 / configure.in
blob6d2c41cb9ac5f549c1ffb43e1445674cf5c40317
1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
2 # Local configure fragment for sysdeps/powerpc/powerpc32.
4 # See whether gas has R_PPC_REL16 relocs.
5 AC_CACHE_CHECK(for R_PPC_REL16 gas support, libc_cv_ppc_rel16, [dnl
6 cat > conftest.s <<\EOF
7         .text
8         addis 11,30,_GLOBAL_OFFSET_TABLE_-.@ha
9 EOF
10 if AC_TRY_COMMAND(${CC-cc} -c $CFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
11   libc_cv_ppc_rel16=yes
12 else
13   libc_cv_ppc_rel16=no
15 rm -f conftest*])
16 if test $libc_cv_ppc_rel16 = yes; then
17   AC_DEFINE(HAVE_ASM_PPC_REL16)