# -*- shell-script -*- # # Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana # University Research and Technology # Corporation. All rights reserved. # Copyright (c) 2004-2005 The University of Tennessee and The University # of Tennessee Research Foundation. All rights # reserved. # Copyright (c) 2004-2007 High Performance Computing Center Stuttgart, # University of Stuttgart. All rights reserved. # Copyright (c) 2004-2005 The Regents of the University of California. # All rights reserved. # Copyright (c) 2006-2015 Cisco Systems, Inc. All rights reserved. # Copyright (c) 2009-2011 Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2017 Intel, Inc. All rights reserved. # Copyright (c) 2021 Nanook Consulting. All rights reserved. # Copyright (c) 2022 Amazon.com, Inc. or its affiliates. All Rights reserved. # $COPYRIGHT$ # # Additional copyrights may follow # # $HEADER$ # # PMIX_CHECK_VISIBILITY # -------------------------------------------------------- AC_DEFUN([PMIX_CHECK_VISIBILITY],[ AC_REQUIRE([AC_PROG_GREP]) # Check if the compiler has support for visibility, like some # versions of gcc, icc Sun Studio cc. AC_ARG_ENABLE(visibility, AS_HELP_STRING([--enable-visibility], [enable visibility feature of certain compilers/linkers (default: enabled)])) WANT_VISIBILITY=0 pmix_msg="whether to enable symbol visibility" if test "$enable_visibility" = "no"; then AC_MSG_CHECKING([$pmix_msg]) AC_MSG_RESULT([no (disabled)]) else CFLAGS_orig=$CFLAGS pmix_add= case "$oac_cv_c_compiler_vendor" in sun) # Check using Sun Studio -xldscope=hidden flag pmix_add=-xldscope=hidden CFLAGS="$PMIX_CFLAGS_BEFORE_PICKY $pmix_add -errwarn=%all" ;; *) # Check using -fvisibility=hidden pmix_add=-fvisibility=hidden CFLAGS="$PMIX_CFLAGS_BEFORE_PICKY $pmix_add -Werror" ;; esac AC_MSG_CHECKING([if $CC supports $pmix_add]) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include __attribute__((visibility("default"))) int foo; ]],[[fprintf(stderr, "Hello, world\n");]])], [AS_IF([test -s conftest.err], [$GREP -iq visibility conftest.err # If we find "visibility" in the stderr, then # assume it doesn't work AS_IF([test "$?" = "0"], [pmix_add=])]) ], [pmix_add=]) AS_IF([test "$pmix_add" = ""], [AC_MSG_RESULT([no])], [AC_MSG_RESULT([yes])]) CFLAGS=$CFLAGS_orig PMIX_VISIBILITY_CFLAGS=$pmix_add if test "$pmix_add" != "" ; then WANT_VISIBILITY=1 CFLAGS="$CFLAGS $PMIX_VISIBILITY_CFLAGS" AC_MSG_CHECKING([$pmix_msg]) AC_MSG_RESULT([yes (via $pmix_add)]) elif test "$enable_visibility" = "yes"; then AC_MSG_ERROR([Symbol visibility support requested but compiler does not seem to support it. Aborting]) else AC_MSG_CHECKING([$pmix_msg]) AC_MSG_RESULT([no (unsupported)]) fi unset pmix_add fi AC_DEFINE_UNQUOTED([PMIX_HAVE_VISIBILITY], [$WANT_VISIBILITY], [Whether C compiler supports symbol visibility or not]) AM_CONDITIONAL([WANT_HIDDEN],[test "$WANT_VISIBILITY" = "1"]) ])