diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-08 18:04:46 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-08 18:04:46 +0000 |
commit | 06dd9e696544873a14db4c5f832fef0c42f719fd (patch) | |
tree | 3b3f33f8be81035a48794eae19ec948154a494a5 | |
parent | f5bfd4fa511a29233c6476adbf928f996cf95065 (diff) | |
download | gcc-06dd9e696544873a14db4c5f832fef0c42f719fd.tar.gz |
* configure.in: Add support for an x86_64-mingw* target.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120585 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 696d4ecf8c0..fe609b4deff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-01-08 Kai Tietz <kai.tietz@onevision.com> + + * configure.in: Add support for an x86_64-mingw* target. + 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com> * Makefile.tpl (all-target): Correct @if conditional for target diff --git a/configure.in b/configure.in index 4da1a186155..fc40507b64b 100644 --- a/configure.in +++ b/configure.in @@ -278,6 +278,9 @@ case "${host}" in i[[3456789]]86-*-go32* | i[[3456789]]86-*-msdosdjgpp*) noconfigdirs="$noconfigdirs tcl tk expect dejagnu send-pr uudecode guile itcl gnuserv libffi" ;; + x86_64-*-mingw*) + noconfigdirs="$noconfigdirs expect dejagnu autoconf automake send-pr rcs guile perl texinfo libtool newlib" + ;; i[[3456789]]86-*-mingw32*) # noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl itcl gnuserv" noconfigdirs="$noconfigdirs expect dejagnu autoconf automake send-pr rcs guile perl texinfo libtool newlib" @@ -619,6 +622,10 @@ case "${target}" in target_configdirs="$target_configdirs target-winsup" noconfigdirs="$noconfigdirs expect target-libgloss target-newlib ${libgcj}" ;; + x86_64-*-mingw*) + target_configdirs="$target_configdirs target-winsup" + noconfigdirs="$noconfigdirs expect target-libgloss target-newlib ${libgcj}" + ;; *-*-cygwin*) target_configdirs="$target_configdirs target-libtermcap target-winsup" noconfigdirs="$noconfigdirs target-gperf target-libgloss ${libgcj}" @@ -934,6 +941,8 @@ case "${host}" in ;; *-mingw32*) ;; + *-mingw64*) + ;; *-interix*) host_makefile_frag="config/mh-interix" ;; |