We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 737d4fa + 2c5b164 commit 8fa8837Copy full SHA for 8fa8837
configure.ac
@@ -270,7 +270,7 @@ if test "x$GCC" = "xyes"; then
270
echo 'int __attribute__ ((visibility ("hidden"))) foo (void) { return 1 ; }' > conftest.c
271
libffi_cv_hidden_visibility_attribute=no
272
if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
273
- if grep '\.hidden.*foo' conftest.s >/dev/null; then
+ if egrep '(\.hidden|\.private_extern).*foo' conftest.s >/dev/null; then
274
libffi_cv_hidden_visibility_attribute=yes
275
fi
276
0 commit comments