From 99a645c28c123d7f236e1d87a34f2da006da701f Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 31 Jan 2025 04:34:13 +0000 Subject: [PATCH] Revert "build: remove check for __attribute__((visibility.." This reverts commit 37c9abdc4375ce1a1b9186a63e8c133fbb7feebd (#30590) --- configure.ac | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/configure.ac b/configure.ac index 513e0522d4..891bc5aa42 100644 --- a/configure.ac +++ b/configure.ac @@ -934,6 +934,23 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ [ AC_MSG_RESULT([no])] ) +AC_MSG_CHECKING([for default visibility attribute]) +AC_COMPILE_IFELSE([AC_LANG_SOURCE([ + int foo(void) __attribute__((visibility("default"))); + int main(){} + ])], + [ + AC_DEFINE([HAVE_DEFAULT_VISIBILITY_ATTRIBUTE], [1], [Define if the visibility attribute is supported.]) + AC_MSG_RESULT([yes]) + ], + [ + AC_MSG_RESULT([no]) + if test "$use_reduce_exports" = "yes"; then + AC_MSG_ERROR([Cannot find a working visibility attribute. Use --disable-reduce-exports.]) + fi + ] +) + AC_MSG_CHECKING([for dllexport attribute]) AC_COMPILE_IFELSE([AC_LANG_SOURCE([ __declspec(dllexport) int foo(void);