File: opal_check_offsetof.m4

package info (click to toggle)
openmpi 3.1.3-11
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 118,572 kB
  • sloc: ansic: 628,972; f90: 17,993; makefile: 13,761; sh: 7,051; java: 6,360; perl: 3,215; cpp: 2,225; python: 1,350; lex: 988; fortran: 52; tcl: 12
file content (43 lines) | stat: -rw-r--r-- 1,739 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- shell-script -*-
#
# Copyright (c) 2009      IBM Corporation.  All rights reserved.
# Copyright (c) 2009      Cisco Systems, Inc.  All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#

# This macro checks to ensure that the compiler properly supports
# offsetof().  The PGI compilers had a problem with this macro in some
# versions of their compiler on some platforms (e.g., 9.0-1 on
# x86_64).  The workaround is to use -DNO_PGI_OFFSET in these cases.
# A bug report was submitted to PGI support in late June 2009; the
# problem was apparently a trivial typo in one of their header files
# and should be fixed in subsequent releases (e.g., 9.0-2?).

AC_DEFUN([OPAL_CHECK_OFFSETOF],[
    OPAL_VAR_SCOPE_PUSH([have_offsetof_msg])

    AC_MSG_CHECKING(for functional offsetof macro)
    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include<stddef.h>]],
                                      [[struct foo {int a, b;}; size_t offset = offsetof(struct foo, b); ]])],
                      [have_offsetof_msg="yes"], [have_offsetof_msg="no"])
    if test "$have_offsetof_msg" = "no"; then
        CPPFLAGS="$CPPFLAGS -DNO_PGI_OFFSET"
        AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include<stddef.h>]],
                                          [[struct foo {int a, b;}; size_t offset = offsetof(struct foo, b); ]])],
                          [have_offsetof_msg="yes"], [have_offsetof_msg="no"])

        if test "$have_offsetof_msg" = "no"; then
            AC_MSG_RESULT([$have_offsetof_msg])
            AC_MSG_WARN([Your compiler does not support offsetof macro])
            AC_MSG_ERROR([Configure: Cannot continue])
        fi
    fi

    AC_MSG_RESULT([$have_offsetof_msg])
    OPAL_VAR_SCOPE_POP
])dnl