diff options
author | Jonathan Yong <10walls@gmail.com> | 2020-09-10 11:48:41 +0000 |
---|---|---|
committer | Jonathan Yong <10walls@gmail.com> | 2020-09-10 11:54:28 +0000 |
commit | ae6cf62861b5e9acb518b016ddbe7f783206f65f (patch) | |
tree | 9240d2dfec216e235e6e055594cbe5857dc1fc62 /gcc | |
parent | f96b6328fa7162111e4440c5901ef313ed3e6c9a (diff) | |
download | gcc-ae6cf62861b5e9acb518b016ddbe7f783206f65f.zip gcc-ae6cf62861b5e9acb518b016ddbe7f783206f65f.tar.gz gcc-ae6cf62861b5e9acb518b016ddbe7f783206f65f.tar.bz2 |
Cygwin/MinGW: Do not version lto plugins
GCC on Linux already uses liblto_plugin.so directly without
the libtool version suffix, adjust windows GCC to do the same.
gcc/ChangeLog:
* config.host: Adjust plugin name for Windows.
lto-plugin/ChangeLog:
* Makefile.am: drop versioning from libtool completely.
* Makefile.in: regenerate.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config.host | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config.host b/gcc/config.host index 84f0433..373d5ef 100644 --- a/gcc/config.host +++ b/gcc/config.host @@ -232,7 +232,7 @@ case ${host} in out_host_hook_obj=host-cygwin.o host_xmake_file="${host_xmake_file} i386/x-cygwin" host_exeext=.exe - host_lto_plugin_soname=cyglto_plugin-0.dll + host_lto_plugin_soname=cyglto_plugin.dll ;; i[34567]86-*-mingw32*) host_xm_file=i386/xm-mingw32.h @@ -240,7 +240,7 @@ case ${host} in host_exeext=.exe out_host_hook_obj=host-mingw32.o host_extra_gcc_objs="${host_extra_gcc_objs} driver-mingw32.o" - host_lto_plugin_soname=liblto_plugin-0.dll + host_lto_plugin_soname=liblto_plugin.dll ;; x86_64-*-mingw*) use_long_long_for_widest_fast_int=yes @@ -249,7 +249,7 @@ case ${host} in host_exeext=.exe out_host_hook_obj=host-mingw32.o host_extra_gcc_objs="${host_extra_gcc_objs} driver-mingw32.o" - host_lto_plugin_soname=liblto_plugin-0.dll + host_lto_plugin_soname=liblto_plugin.dll ;; i[34567]86-*-darwin* | x86_64-*-darwin*) out_host_hook_obj="${out_host_hook_obj} host-i386-darwin.o" |