(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / hppa / configure.in
blob1ec6780835b1a26997697c01dc7bbfdcef811b44
1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
3 dnl The standard hppa assembler uses `;' to start comments and `!'
4 dnl as a line separator.
5 hppa*linux*)
6 AC_CACHE_CHECK(for assembler line separator,
7                libc_cv_asm_line_sep, [dnl
8 cat > conftest.s <<EOF
9 nop ; is_old_puffin
10 EOF
11 if AC_TRY_COMMAND(${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
12   libc_cv_asm_line_sep='!'
13 else
14   if test -z "$enable_hacker_mode"; then
15     echo "*** You need a newer assembler to compile glibc"
16     rm -f conftest*
17     exit 1
18   fi
19   libc_cv_asm_line_sep=';'
21 rm -f conftest*])
22 AC_DEFINE_UNQUOTED(ASM_LINE_SEP, $libc_cv_asm_line_sep)