Skip to content
Snippets Groups Projects
Commit 9475a66e authored by Steffen Müthing's avatar Steffen Müthing
Browse files

[Autotools] Check for alignment values of various simple types

We'll need those alignment values for the SIMD kernels.
parent d1ce85a4
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,12 @@ AC_DEFUN([DUNE_COMMON_CHECKS],
AC_REQUIRE([AC_TYPE_SIZE_T])
AC_REQUIRE([AC_STRUCT_TM])
AC_CHECK_ALIGNOF(double)
AC_CHECK_ALIGNOF(float)
AC_CHECK_ALIGNOF(size_t)
AC_CHECK_ALIGNOF(uint64_t)
AC_CHECK_ALIGNOF(uint32_t)
dnl check for library functions
AC_LANG_PUSH([C++])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment