diff options
Diffstat (limited to 'gcc/config.host')
-rw-r--r-- | gcc/config.host | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/config.host b/gcc/config.host index 83c65093743..4affcb06b17 100644 --- a/gcc/config.host +++ b/gcc/config.host @@ -202,13 +202,18 @@ case ${host} in esac ;; i[34567]86-*-pe | i[34567]86-*-cygwin*) - use_long_long_for_widest_fast_int=yes host_xm_file=i386/xm-cygwin.h out_host_hook_obj=host-cygwin.o host_xmake_file="${host_xmake_file} i386/x-cygwin" host_exeext=.exe ;; - i[34567]86-*-mingw32* | x86_64-*-mingw*) + i[34567]86-*-mingw32*) + host_xm_file=i386/xm-mingw32.h + host_xmake_file="${host_xmake_file} i386/x-mingw32" + host_exeext=.exe + out_host_hook_obj=host-mingw32.o + ;; + x86_64-*-mingw*) use_long_long_for_widest_fast_int=yes host_xm_file=i386/xm-mingw32.h host_xmake_file="${host_xmake_file} i386/x-mingw32" |