* configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
* configure: Regenerated. gdb/ * config/i386/cygwin.mt (DEPRECATED_TM_FILE): Delete. * config/i386/nm-cygwin.h: Add contents of tm-cygwin.h. * config/i386/tm-cygwin.h: Delete file.
This commit is contained in:
parent
bdccea594e
commit
66a79c16a6
7 changed files with 177 additions and 198 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
|
||||
* configure: Regenerated.
|
||||
|
||||
2006-07-18 Paolo Bonzini <bonzini@gnu.org>
|
||||
|
||||
* Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
|
||||
|
|
14
configure.in
14
configure.in
|
@ -617,13 +617,6 @@ case "${target}" in
|
|||
i[[3456789]]86-*-mingw32*)
|
||||
target_configdirs="$target_configdirs target-mingw"
|
||||
noconfigdirs="$noconfigdirs expect target-libgloss ${libgcj}"
|
||||
|
||||
# Can't build gdb for mingw32 if not native.
|
||||
case "${host}" in
|
||||
i[[3456789]]86-*-mingw32) ;; # keep gdb tcl tk expect etc.
|
||||
*) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl gnuserv"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
*-*-cygwin*)
|
||||
target_configdirs="$target_configdirs target-libtermcap target-winsup"
|
||||
|
@ -634,13 +627,6 @@ case "${target}" in
|
|||
elif test -d "$srcdir/newlib"; then
|
||||
echo "Warning: winsup is missing so newlib can't be built."
|
||||
fi
|
||||
|
||||
# Can't build gdb for Cygwin if not native.
|
||||
case "${host}" in
|
||||
*-*-cygwin*) ;; # keep gdb tcl tk expect etc.
|
||||
*) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl libgui gnuserv"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss* | \
|
||||
i[[3456789]]86-*-uwin* | i[[3456789]]86-*-interix* )
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* config/i386/cygwin.mt (DEPRECATED_TM_FILE): Delete.
|
||||
* config/i386/nm-cygwin.h: Add contents of tm-cygwin.h.
|
||||
* config/i386/tm-cygwin.h: Delete file.
|
||||
|
||||
2006-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* infrun.c (handle_inferior_event): Typo.
|
||||
|
|
|
@ -1,6 +1,2 @@
|
|||
# Target: Intel 386 run win32
|
||||
TDEPFILES= i386-tdep.o i386-cygwin-tdep.o i387-tdep.o
|
||||
DEPRECATED_TM_FILE= tm-cygwin.h
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Native definitions for Intel x86 running CYGWIN.
|
||||
Copyright 2002 Free Software Foundation, Inc.
|
||||
Copyright 2002, 2006 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
||||
|
@ -18,6 +18,10 @@
|
|||
Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#define ATTACH_NO_WAIT
|
||||
#define ADD_SHARED_SYMBOL_FILES dll_symbol_command
|
||||
void dll_symbol_command (char *, int);
|
||||
|
||||
#define I386_USE_GENERIC_WATCHPOINTS
|
||||
|
||||
#include "i386/nm-i386.h"
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
/* Macro definitions for i386 running under the win32 API Unix.
|
||||
|
||||
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004 Free
|
||||
Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#define ATTACH_NO_WAIT
|
||||
#define ADD_SHARED_SYMBOL_FILES dll_symbol_command
|
||||
void dll_symbol_command (char *, int);
|
Loading…
Reference in a new issue