diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2008-04-02 07:48:07 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2008-04-02 09:48:07 +0200 |
commit | e8930cc1e2b31c8b15b9972b7168733b73f13e52 (patch) | |
tree | 420c1bd72cb43fb49ccc354eaa354a9c8fe133db | |
parent | ad424a85bc9ff32025a7e2d4c1fb9c90d229eef5 (diff) | |
download | gcc-e8930cc1e2b31c8b15b9972b7168733b73f13e52.zip gcc-e8930cc1e2b31c8b15b9972b7168733b73f13e52.tar.gz gcc-e8930cc1e2b31c8b15b9972b7168733b73f13e52.tar.bz2 |
config.gcc: Add for x86_64-*-mingw* the t-crtfm to tbuild.
2008-04-02 Kai Tietz <kai.tietz@onevision.com>
* config.gcc: Add for x86_64-*-mingw* the t-crtfm to tbuild.
From-SVN: r133824
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config.gcc | 15 |
2 files changed, 15 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0f13284..dad05e3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-04-02 Kai Tietz <kai.tietz@onevision.com> + + * config.gcc: Add for x86_64-*-mingw* the t-crtfm to tbuild. + 2008-04-02 Richard Guenther <rguenther@suse.de> * tree-vrp.c (extract_range_from_assert): Make sure to not diff --git a/gcc/config.gcc b/gcc/config.gcc index f9f2fa4..6c16e77 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1379,7 +1379,7 @@ i[34567]86-*-pe | i[34567]86-*-cygwin*) thread_file='posix' fi ;; -i[34567]86-*-mingw32* | x86_64-*-mingw32*) +i[34567]86-*-mingw* | x86_64-*-mingw*) tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h" xm_file=i386/xm-mingw32.h tmake_file="i386/t-cygming i386/t-mingw32" @@ -1396,10 +1396,17 @@ i[34567]86-*-mingw32* | x86_64-*-mingw32*) ;; esac case ${target} in - *mingw32crt*) - tm_file="${tm_file} i386/crtdll.h" + x86_64-*-mingw*) + tmake_file="${tmake_file} i386/t-crtfm" ;; - *mingw32msv* | *mingw32*) + *) + ;; + esac + case ${target} in + *mingw32crt*) + tm_file="${tm_file} i386/crtdll.h" + ;; + *mingw32msv* | *mingw*) ;; esac ;; |