diff options
author | Andrew Haley <aph@redhat.com> | 2007-09-11 13:10:20 +0000 |
---|---|---|
committer | Andrew Haley <aph@redhat.com> | 2007-09-11 13:10:20 +0000 |
commit | 84e7906ea01a52faf30e4bddf4f553d0cec59238 (patch) | |
tree | 47169de016f5aef39128d25c7051b75d1270e5b4 | |
parent | 691bb5a1f3948f6c1879b072a83a375c6704b137 (diff) | |
download | gdb-84e7906ea01a52faf30e4bddf4f553d0cec59238.zip gdb-84e7906ea01a52faf30e4bddf4f553d0cec59238.tar.gz gdb-84e7906ea01a52faf30e4bddf4f553d0cec59238.tar.bz2 |
2007-09-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR target/33281
* configure.ac: Use config/mh-mingw on mingw.
* configure: Regenerate.
* config/mh-mingw: New host makefile fragment.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | config/mh-mingw | 3 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
4 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2007-09-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + + PR target/33281 + * configure.ac: Use config/mh-mingw on mingw. + * configure: Regenerate. + * config/mh-mingw: New host makefile fragment. + 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk> PR other/32154 diff --git a/config/mh-mingw b/config/mh-mingw new file mode 100644 index 0000000..7186499 --- /dev/null +++ b/config/mh-mingw @@ -0,0 +1,3 @@ +# Add -D__USE_MINGW_ACCESS to enable the built compiler to work on Windows +# Vista (see PR33281 for details). +BOOT_CFLAGS += -D__USE_MINGW_ACCESS @@ -2726,8 +2726,10 @@ case "${host}" in host_makefile_frag="config/mh-cygwin" ;; *-mingw32*) + host_makefile_frag="config/mh-mingw" ;; *-mingw64*) + host_makefile_frag="config/mh-mingw" ;; *-interix*) host_makefile_frag="config/mh-interix" diff --git a/configure.ac b/configure.ac index 27c512e..fb8f710 100644 --- a/configure.ac +++ b/configure.ac @@ -1002,8 +1002,10 @@ case "${host}" in host_makefile_frag="config/mh-cygwin" ;; *-mingw32*) + host_makefile_frag="config/mh-mingw" ;; *-mingw64*) + host_makefile_frag="config/mh-mingw" ;; *-interix*) host_makefile_frag="config/mh-interix" |