diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-01-09 06:47:58 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-01-09 06:51:51 -0800 |
commit | a4966cd965cd7269426ea096113df862c1dcdf34 (patch) | |
tree | 909654e54daa47c9183eb1aecabcff7ba0ea2065 /gprof | |
parent | 50ad1254d5030d0804cbf89c758359ae202e8d55 (diff) | |
download | fsf-binutils-gdb-a4966cd965cd7269426ea096113df862c1dcdf34.zip fsf-binutils-gdb-a4966cd965cd7269426ea096113df862c1dcdf34.tar.gz fsf-binutils-gdb-a4966cd965cd7269426ea096113df862c1dcdf34.tar.bz2 |
Binutils: Pass --plugin to AR and RANLIB
Detect GCC LTO plugin. Pass --plugin to AR and RANLIB to support LTO
build.
bfd/
* configure: Regenerated.
binutils/
* configure: Regenerated.
gas/
* configure: Regenerated.
gprof/
* configure: Regenerated.
ld/
* configure: Regenerated.
libctf/
* configure: Regenerated.
opcodes/
* configure: Regenerated.
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/ChangeLog | 4 | ||||
-rwxr-xr-x | gprof/configure | 27 |
2 files changed, 29 insertions, 2 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 7ad155e..c612785 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,7 @@ +2021-01-09 H.J. Lu <hongjiu.lu@intel.com> + + * configure: Regenerated. + 2021-01-09 Nick Clifton <nickc@redhat.com> * configure: Regenerate. diff --git a/gprof/configure b/gprof/configure index fbc038f..ce3a1d5 100755 --- a/gprof/configure +++ b/gprof/configure @@ -6255,6 +6255,19 @@ test -z "$deplibs_check_method" && deplibs_check_method=unknown +plugin_option= +plugin_names="liblto_plugin.so liblto_plugin-0.dll cyglto_plugin-0.dll" +for plugin in $plugin_names; do + plugin_so=`${CC} ${CFLAGS} --print-prog-name $plugin` + if test x$plugin_so = x$plugin; then + plugin_so=`${CC} ${CFLAGS} --print-file-name $plugin` + fi + if test x$plugin_so != x$plugin; then + plugin_option="--plugin $plugin_so" + break + fi +done + if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 @@ -6348,6 +6361,11 @@ else fi test -z "$AR" && AR=ar +if test -n "$plugin_option"; then + if $AR --help 2>&1 | grep -q "\--plugin"; then + AR="$AR $plugin_option" + fi +fi test -z "$AR_FLAGS" && AR_FLAGS=cru @@ -6552,6 +6570,11 @@ else fi test -z "$RANLIB" && RANLIB=: +if test -n "$plugin_option" && test "$RANLIB" != ":"; then + if $RANLIB --help 2>&1 | grep -q "\--plugin"; then + RANLIB="$RANLIB $plugin_option" + fi +fi @@ -11181,7 +11204,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11184 "configure" +#line 11207 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11287,7 +11310,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11290 "configure" +#line 11313 "configure" #include "confdefs.h" #if HAVE_DLFCN_H |