2008-10-28 20:22:29 +03:00
|
|
|
dnl -*- shell-script -*-
|
|
|
|
dnl
|
2015-02-03 09:19:22 +03:00
|
|
|
dnl Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
|
|
|
|
dnl Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
|
|
|
|
dnl Copyright (c) 2015 Research Organization for Information Science
|
|
|
|
dnl and Technology (RIST). All rights reserved.
|
2008-10-28 20:22:29 +03:00
|
|
|
dnl $COPYRIGHT$
|
|
|
|
dnl
|
|
|
|
dnl Additional copyrights may follow
|
|
|
|
dnl
|
|
|
|
dnl $HEADER$
|
|
|
|
dnl
|
|
|
|
dnl defines:
|
2009-05-07 00:11:28 +04:00
|
|
|
dnl OPAL_$1_USE_PRAGMA_IDENT
|
|
|
|
dnl OPAL_$1_USE_IDENT
|
|
|
|
dnl OPAL_$1_USE_CONST_CHAR_IDENT
|
2008-10-28 20:22:29 +03:00
|
|
|
dnl
|
|
|
|
|
2014-05-06 23:22:27 +04:00
|
|
|
# OPAL_CHECK_IDENT(compiler-env, compiler-flags,
|
2008-10-28 20:22:29 +03:00
|
|
|
# file-suffix, lang) Try to compile a source file containing
|
|
|
|
# a #pragma ident, and determine whether the ident was
|
|
|
|
# inserted into the resulting object file
|
|
|
|
# -----------------------------------------------------------
|
2014-05-06 23:22:27 +04:00
|
|
|
AC_DEFUN([OPAL_CHECK_IDENT], [
|
2008-10-28 20:22:29 +03:00
|
|
|
AC_MSG_CHECKING([for $4 ident string support])
|
|
|
|
|
2009-05-07 00:11:28 +04:00
|
|
|
opal_pragma_ident_happy=0
|
|
|
|
opal_ident_happy=0
|
|
|
|
opal_static_const_char_happy=0
|
2014-05-06 23:22:27 +04:00
|
|
|
_OPAL_CHECK_IDENT(
|
2008-10-28 20:22:29 +03:00
|
|
|
[$1], [$2], [$3],
|
|
|
|
[[#]pragma ident], [],
|
2009-05-07 00:11:28 +04:00
|
|
|
[opal_pragma_ident_happy=1
|
2014-05-06 23:22:27 +04:00
|
|
|
opal_message="[#]pragma ident"],
|
|
|
|
_OPAL_CHECK_IDENT(
|
2008-10-28 20:22:29 +03:00
|
|
|
[$1], [$2], [$3],
|
|
|
|
[[#]ident], [],
|
2009-05-07 00:11:28 +04:00
|
|
|
[opal_ident_happy=1
|
2014-05-06 23:22:27 +04:00
|
|
|
opal_message="[#]ident"],
|
|
|
|
_OPAL_CHECK_IDENT(
|
2008-10-28 20:22:29 +03:00
|
|
|
[$1], [$2], [$3],
|
|
|
|
[[#]pragma comment(exestr, ], [)],
|
2009-05-07 00:11:28 +04:00
|
|
|
[opal_pragma_comment_happy=1
|
2014-05-06 23:22:27 +04:00
|
|
|
opal_message="[#]pragma comment"],
|
2009-05-07 00:11:28 +04:00
|
|
|
[opal_static_const_char_happy=1
|
2014-05-06 23:22:27 +04:00
|
|
|
opal_message="static const char[[]]"])))
|
2008-10-28 20:22:29 +03:00
|
|
|
|
2009-05-07 00:11:28 +04:00
|
|
|
AC_DEFINE_UNQUOTED([OPAL_$1_USE_PRAGMA_IDENT],
|
|
|
|
[$opal_pragma_ident_happy], [Use #pragma ident strings for $4 files])
|
|
|
|
AC_DEFINE_UNQUOTED([OPAL_$1_USE_IDENT],
|
|
|
|
[$opal_ident_happy], [Use #ident strings for $4 files])
|
|
|
|
AC_DEFINE_UNQUOTED([OPAL_$1_USE_PRAGMA_COMMENT],
|
|
|
|
[$opal_pragma_comment_happy], [Use #pragma comment for $4 files])
|
|
|
|
AC_DEFINE_UNQUOTED([OPAL_$1_USE_CONST_CHAR_IDENT],
|
|
|
|
[$opal_static_const_char_happy], [Use static const char[] strings for $4 files])
|
2008-10-28 20:22:29 +03:00
|
|
|
|
2014-05-06 23:22:27 +04:00
|
|
|
AC_MSG_RESULT([$opal_message])
|
2008-10-28 20:22:29 +03:00
|
|
|
|
2014-05-06 23:22:27 +04:00
|
|
|
unset opal_pragma_ident_happy opal_ident_happy opal_static_const_char_happy opal_message
|
2008-10-28 20:22:29 +03:00
|
|
|
])
|
|
|
|
|
2014-05-06 23:22:27 +04:00
|
|
|
# _OPAL_CHECK_IDENT(compiler-env, compiler-flags,
|
2008-10-28 20:22:29 +03:00
|
|
|
# file-suffix, header_prefix, header_suffix, action-if-success, action-if-fail)
|
|
|
|
# Try to compile a source file containing a #-style ident,
|
|
|
|
# and determine whether the ident was inserted into the
|
|
|
|
# resulting object file
|
|
|
|
# -----------------------------------------------------------
|
2014-05-06 23:22:27 +04:00
|
|
|
AC_DEFUN([_OPAL_CHECK_IDENT], [
|
|
|
|
eval opal_compiler="\$$1"
|
|
|
|
eval opal_flags="\$$2"
|
2008-10-28 20:22:29 +03:00
|
|
|
|
2014-05-06 23:22:27 +04:00
|
|
|
opal_ident="string_not_coincidentally_inserted_by_the_compiler"
|
2008-10-28 20:22:29 +03:00
|
|
|
cat > conftest.$3 <<EOF
|
2014-11-03 23:17:19 +03:00
|
|
|
#define IDENT_MSG "$opal_ident"
|
|
|
|
$4 IDENT_MSG $5
|
2008-10-28 20:22:29 +03:00
|
|
|
int main(int argc, char** argv);
|
|
|
|
int main(int argc, char** argv) { return 0; }
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# "strings" won't always return the ident string. objdump isn't
|
|
|
|
# universal (e.g., OS X doesn't have it), and ...other
|
|
|
|
# complications. So just try to "grep" for the string in the
|
|
|
|
# resulting object file. If the ident is found in "strings" or
|
|
|
|
# the grep succeeds, rule that we have this flavor of ident.
|
|
|
|
|
2014-05-06 23:22:27 +04:00
|
|
|
OPAL_LOG_COMMAND([$opal_compiler $opal_flags -c conftest.$3 -o conftest.${OBJEXT}],
|
2008-10-28 20:22:29 +03:00
|
|
|
[AS_IF([test -f conftest.${OBJEXT}],
|
2014-05-06 23:22:27 +04:00
|
|
|
[opal_output="`strings -a conftest.${OBJEXT} | grep $opal_ident`"
|
|
|
|
grep $opal_ident conftest.${OBJEXT} 2>&1 1>/dev/null
|
|
|
|
opal_status=$?
|
2015-02-03 09:19:22 +03:00
|
|
|
AS_IF([test "$opal_output" != "" || test "$opal_status" = "0"],
|
2008-10-28 20:22:29 +03:00
|
|
|
[$6],
|
|
|
|
[$7])],
|
2010-11-13 02:22:11 +03:00
|
|
|
[OPAL_LOG_MSG([the failed program was:])
|
|
|
|
OPAL_LOG_FILE([conftest.$3])
|
2008-10-28 20:22:29 +03:00
|
|
|
$7]
|
|
|
|
[$7])])
|
|
|
|
|
2014-05-06 23:22:27 +04:00
|
|
|
unset opal_compiler opal_flags opal_output opal_status
|
2008-10-28 20:22:29 +03:00
|
|
|
rm -rf conftest.* conftest${EXEEXT}
|
|
|
|
])dnl
|