64 строки
2.1 KiB
Bash
64 строки
2.1 KiB
Bash
dnl -*- shell-script -*-
|
|
dnl
|
|
dnl Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
dnl All rights reserved.
|
|
dnl Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
dnl All rights reserved.
|
|
dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
dnl University of Stuttgart. All rights reserved.
|
|
dnl Copyright (c) 2004-2005 The Regents of the University of California.
|
|
dnl All rights reserved.
|
|
dnl $COPYRIGHT$
|
|
dnl
|
|
dnl Additional copyrights may follow
|
|
dnl
|
|
dnl $HEADER$
|
|
dnl
|
|
|
|
AC_DEFUN([OMPI_C_GET_ALIGNMENT],[
|
|
# Determine datatype alignment.
|
|
# First arg is type, 2nd arg is config var to define.
|
|
AC_MSG_CHECKING([alignment of $1])
|
|
AC_TRY_RUN([
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
struct foo { char c; $1 x; };
|
|
int main(int argc, char* argv[])
|
|
{
|
|
struct foo *p = (struct foo *) malloc(sizeof(struct foo));
|
|
int diff;
|
|
FILE *f=fopen("conftestval", "w");
|
|
if (!f) exit(1);
|
|
diff = ((char *)&p->x) - ((char *)&p->c);
|
|
fprintf(f, "%d\n", (diff >= 0) ? diff : -diff);
|
|
return 0;
|
|
}],[ompi_ac_align=`cat conftestval`],[ompi_ac_align=-1],[ompi_ac_align=-2])
|
|
|
|
if test "$ompi_ac_align" = "-2" ; then
|
|
# cross compile - do a non-executable test. Trick taken from
|
|
# the AC CVS repository. If only they'd get around to actually
|
|
# releasing something post 2.59...
|
|
_AC_COMPUTE_INT([offsetof (struct { char x; $1 y; }, y)],
|
|
[ompi_ac_align],
|
|
[AC_INCLUDES_DEFAULT()
|
|
#ifndef offsetof
|
|
# define offsetof(type, member) ((char *) &((type *) 0)->member - (char *) 0)
|
|
#endif],
|
|
[ompi_ac_align=-1])
|
|
fi
|
|
|
|
if test "`expr $ompi_ac_align \<= 0`" = "1"; then
|
|
AC_MSG_WARN([*** Problem running configure test!])
|
|
AC_MSG_WARN([*** See config.log for details.])
|
|
AC_MSG_ERROR([*** Cannot continue.])
|
|
fi
|
|
|
|
AC_MSG_RESULT([$ompi_ac_align])
|
|
AC_DEFINE_UNQUOTED($2, $ompi_ac_align, [Alignment of type $1])
|
|
eval "$2=$ompi_ac_align"
|
|
unset ompi_ac_align
|
|
|
|
/bin/rm -f conftest*])dnl
|