stdalign.m4 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Check for stdalign.h that conforms to C11.
  2. dnl Copyright 2011-2017 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. # Prepare for substituting <stdalign.h> if it is not supported.
  7. AC_DEFUN([gl_STDALIGN_H],
  8. [
  9. AC_CACHE_CHECK([for working stdalign.h],
  10. [gl_cv_header_working_stdalign_h],
  11. [AC_COMPILE_IFELSE(
  12. [AC_LANG_PROGRAM(
  13. [[#include <stdalign.h>
  14. #include <stddef.h>
  15. /* Test that alignof yields a result consistent with offsetof.
  16. This catches GCC bug 52023
  17. <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52023>. */
  18. #ifdef __cplusplus
  19. template <class t> struct alignof_helper { char a; t b; };
  20. # define ao(type) offsetof (alignof_helper<type>, b)
  21. #else
  22. # define ao(type) offsetof (struct { char a; type b; }, b)
  23. #endif
  24. char test_double[ao (double) % _Alignof (double) == 0 ? 1 : -1];
  25. char test_long[ao (long int) % _Alignof (long int) == 0 ? 1 : -1];
  26. char test_alignof[alignof (double) == _Alignof (double) ? 1 : -1];
  27. /* Test _Alignas only on platforms where gnulib can help. */
  28. #if \
  29. ((defined __cplusplus && 201103 <= __cplusplus) \
  30. || (defined __APPLE__ && defined __MACH__ \
  31. ? 4 < __GNUC__ + (1 <= __GNUC_MINOR__) \
  32. : __GNUC__) \
  33. || __HP_cc || __HP_aCC || __IBMC__ || __IBMCPP__ \
  34. || __ICC || 0x5110 <= __SUNPRO_C \
  35. || 1300 <= _MSC_VER)
  36. struct alignas_test { char c; char alignas (8) alignas_8; };
  37. char test_alignas[offsetof (struct alignas_test, alignas_8) == 8
  38. ? 1 : -1];
  39. #endif
  40. ]])],
  41. [gl_cv_header_working_stdalign_h=yes],
  42. [gl_cv_header_working_stdalign_h=no])])
  43. if test $gl_cv_header_working_stdalign_h = yes; then
  44. STDALIGN_H=''
  45. else
  46. STDALIGN_H='stdalign.h'
  47. fi
  48. AC_SUBST([STDALIGN_H])
  49. AM_CONDITIONAL([GL_GENERATE_STDALIGN_H], [test -n "$STDALIGN_H"])
  50. ])