diff options
author | 2020-08-28 20:01:50 +0100 | |
---|---|---|
committer | 2020-08-28 20:01:50 +0100 | |
commit | 68f0e3a9d047a02b937485d35fec84a06b90f3ae (patch) | |
tree | e4c39ecce8c988cd0ad5f3823bb14159452cf180 /7.5.0 | |
parent | 8.4.0: backport 'objdump' lookup for plugins (diff) | |
download | gcc-patches-68f0e3a9d047a02b937485d35fec84a06b90f3ae.tar.gz gcc-patches-68f0e3a9d047a02b937485d35fec84a06b90f3ae.tar.bz2 gcc-patches-68f0e3a9d047a02b937485d35fec84a06b90f3ae.zip |
7.5.0: backport 'objdump' lookup for plugins
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to '7.5.0')
-rw-r--r-- | 7.5.0/gentoo/25_all_plugin-objdump.patch | 34 | ||||
-rw-r--r-- | 7.5.0/gentoo/README.history | 3 |
2 files changed, 37 insertions, 0 deletions
diff --git a/7.5.0/gentoo/25_all_plugin-objdump.patch b/7.5.0/gentoo/25_all_plugin-objdump.patch new file mode 100644 index 0000000..a9c33fd --- /dev/null +++ b/7.5.0/gentoo/25_all_plugin-objdump.patch @@ -0,0 +1,34 @@ +https://gcc.gnu.org/PR95648 +--- a/config/gcc-plugin.m4 ++++ b/config/gcc-plugin.m4 +@@ -45,7 +45,7 @@ AC_DEFUN([GCC_ENABLE_PLUGINS], + ;; + *) + if test x$build = x$host; then +- export_sym_check="objdump${exeext} -T" ++ export_sym_check="$ac_cv_prog_OBJDUMP -T" + elif test x$host = x$target; then + export_sym_check="$gcc_cv_objdump -T" + else +--- a/gcc/configure ++++ b/gcc/configure +@@ -30386,7 +30386,7 @@ fi + ;; + *) + if test x$build = x$host; then +- export_sym_check="objdump${exeext} -T" ++ export_sym_check="$ac_cv_prog_OBJDUMP -T" + elif test x$host = x$target; then + export_sym_check="$gcc_cv_objdump -T" + else +--- a/libcc1/configure ++++ b/libcc1/configure +@@ -14819,7 +14819,7 @@ fi + ;; + *) + if test x$build = x$host; then +- export_sym_check="objdump${exeext} -T" ++ export_sym_check="$ac_cv_prog_OBJDUMP -T" + elif test x$host = x$target; then + export_sym_check="$gcc_cv_objdump -T" + else diff --git a/7.5.0/gentoo/README.history b/7.5.0/gentoo/README.history index 2903122..356642c 100644 --- a/7.5.0/gentoo/README.history +++ b/7.5.0/gentoo/README.history @@ -1,3 +1,6 @@ +4 TODO + + 25_all_plugin-objdump.patch + 3 29 May 2020 + 24_all_libcpp-ar.patch |