summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4>2009-09-13 16:59:47 +0000
committerktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4>2009-09-13 16:59:47 +0000
commit9c837e05f000e50dd55238bc77c20c6d5ba828d9 (patch)
treeedcc2769135a3a0c0506e1a8d42078885f38a18f
parente2932b0d6cab74ef56599547a959a7adc4e8cb47 (diff)
downloadgcc-9c837e05f000e50dd55238bc77c20c6d5ba828d9.tar.gz
2009-09-13 Kai Tietz <kai.tietz@onevision.com>
* config.host: Set for x64 mingw the option use_long_long_for_widest_fast_int to yes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151674 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config.host9
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 11f9b280d66..06b5c43bcd1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -4,8 +4,8 @@
for i?86-w64-mingw* case.
(i?86-*-mingw* andx86_64-*-mingw*): Add multilib
support.
- * config.host: Set for cygwin and x86/x64 mingw the
- option use_long_long_for_widest_fast_int to yes.
+ * config.host: Set for x64 mingw the option
+ use_long_long_for_widest_fast_int to yes.
2009-09-13 Eric Botcazou <ebotcazou@adacore.com>
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"