ast_gcc_attribute.m4 886 B

1234567891011121314151617181920212223242526272829303132
  1. # Helper function to check for gcc attributes.
  2. # AST_GCC_ATTRIBUTE([attribute name], [attribute syntax], [attribute scope])
  3. AC_DEFUN([AST_GCC_ATTRIBUTE],
  4. [
  5. AC_MSG_CHECKING(for compiler 'attribute $1' support)
  6. saved_CFLAGS="$CFLAGS"
  7. CFLAGS="$CFLAGS -Wall -Wno-unused -Werror"
  8. if test "x$2" = "x"
  9. then
  10. AC_COMPILE_IFELSE(
  11. AC_LANG_PROGRAM([$3 void __attribute__(($1)) *test(void *muffin, ...) {return (void *) 0;}],
  12. []),
  13. AC_MSG_RESULT(yes)
  14. AC_DEFINE_UNQUOTED([HAVE_ATTRIBUTE_$1], 1, [Define to 1 if your GCC C compiler supports the '$1' attribute.]),
  15. AC_MSG_RESULT(no)
  16. )
  17. else
  18. AC_COMPILE_IFELSE(
  19. AC_LANG_PROGRAM([$3 void __attribute__(($2)) *test(void *muffin, ...) {return (void *) 0;}],
  20. []),
  21. AC_MSG_RESULT(yes)
  22. AC_DEFINE_UNQUOTED([HAVE_ATTRIBUTE_$1], 1, [Define to 1 if your GCC C compiler supports the '$1' attribute.]),
  23. AC_MSG_RESULT(no)
  24. )
  25. fi
  26. CFLAGS="$saved_CFLAGS"
  27. ]
  28. )