Use dlsym to check if libdl is needed for plugin
commit98380f8782fa2125fa338a8f0e582c1cfc8ec14e
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 5 Apr 2018 17:49:39 +0000 (5 17:49 +0000)
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 5 Apr 2018 17:49:39 +0000 (5 17:49 +0000)
tree4451244b5857ae2fefa319ef99eeafc74a5f387d
parentee1f74098cefdc6553e5c589e5762d7d7eaceb8a
Use dlsym to check if libdl is needed for plugin

config/plugins.m4 has

 if test "$plugins" = "yes"; then
    AC_SEARCH_LIBS([dlopen], [dl])
  fi

Plugin uses dlsym, but libasan.so only intercepts dlopen, not dlsym:

[hjl@gnu-tools-1 binutils-text]$ nm -D /lib64/libasan.so.4| grep " dl"
0000000000038580 W dlclose
                 U dl_iterate_phdr
000000000004dc50 W dlopen
                 U dlsym
                 U dlvsym
[hjl@gnu-tools-1 binutils-text]$

Testing dlopen for libdl leads to false negative when -fsanitize=address
is used.  It results in link failure:

../bfd/.libs/libbfd.a(plugin.o): undefined reference to symbol 'dlsym@@GLIBC_2.16'

dlsym should be used to check if libdl is needed for plugin.

PR gas/22318
* plugins.m4 (AC_PLUGINS): Use dlsym to check if libdl is needed.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@259140 138bc75d-0d04-0410-961f-82ee72b054a4
config/ChangeLog
config/plugins.m4