Thanks to visit codestin.com Credit goes to github.com
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.
1 parent 737d4fa commit 2c5b164Copy full SHA for 2c5b164
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