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 AC_CACHE_CHECK(for assembler line separator,
6 libc_cv_asm_line_sep, [dnl
10 if AC_TRY_COMMAND(${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
11 libc_cv_asm_line_sep='!'
13 if test -z "$enable_hacker_mode"; then
14 echo "*** You need a newer assembler to compile glibc"
18 libc_cv_asm_line_sep=';'
21 AC_DEFINE_UNQUOTED(ASM_LINE_SEP, $libc_cv_asm_line_sep)