mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
a02e4a61b2
* regformats/reg-i386-linux.dat: New file, with $orig_eax. * gdbserver/Makefile.in: Add rules for reg-i386-linux.o. * gdbserver/configure.srv: Change i386-*-linux* to use reg-i386-linux.o.
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
# Mappings from configuration triplets to gdbserver build options.
|
|
# This is invoked from the autoconf-generated configure script, to
|
|
# produce the appropriate Makefile substitutions.
|
|
|
|
# This file sets the following shell variables:
|
|
# srv_regobj The register protocol appropriate for this target.
|
|
# srv_tgtobj Any other target-specific modules appropriate
|
|
# for this target.
|
|
#
|
|
# In addition, on GNU/Linux the following shell variables will be set:
|
|
# srv_linux_regsets Set to "yes" if ptrace(PTRACE_GETREGS) and friends
|
|
# may be available on this platform; unset otherwise.
|
|
|
|
# Input is taken from the "${target}" variable.
|
|
|
|
case "${target}" in
|
|
arm*-*-linux*) srv_regobj=reg-arm.o
|
|
srv_tgtobj="linux-low.o linux-arm-low.o"
|
|
;;
|
|
i[3456]86-*-linux*) srv_regobj=reg-i386-linux.o
|
|
srv_tgtobj="linux-low.o linux-i386-low.o"
|
|
;;
|
|
ia64-*-linux*) srv_regobj=reg-ia64.o
|
|
srv_tgtobj="linux-low.o linux-ia64-low.o"
|
|
;;
|
|
m68*-*-linux*) srv_regobj=reg-m68k.o
|
|
srv_tgtobj="linux-low.o linux-m68k-low.o"
|
|
;;
|
|
mips*-*-linux*) srv_regobj=reg-mips.o
|
|
srv_tgtobj="linux-low.o linux-mips-low.o"
|
|
;;
|
|
powerpc*-*-linux*) srv_regobj=reg-ppc.o
|
|
srv_tgtobj="linux-low.o linux-ppc-low.o"
|
|
;;
|
|
sh*-*-linux*) srv_regobj=reg-sh.o
|
|
srv_tgtobj="linux-low.o linux-sh-low.o"
|
|
;;
|
|
*) echo "Error: target not supported by gdbserver."
|
|
exit 1
|
|
;;
|
|
esac
|