diff options
author | Jozef Lawrynowicz <jozef.l@mittosystems.com> | 2019-12-13 13:46:32 +0000 |
---|---|---|
committer | Jozef Lawrynowicz <jozef.l@mittosystems.com> | 2019-12-13 13:46:32 +0000 |
commit | b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79 (patch) | |
tree | 03f3c5e6b32c72023719c1444705c016f51e4f5f /gdb | |
parent | 0bc3450e220a4fb29f931ada84b546ce8993e85e (diff) | |
download | gdb-b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79.zip gdb-b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79.tar.gz gdb-b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79.tar.bz2 |
MSP430: Relax target glob for configuring GDB
This enables support for the msp430-elfbare target being added to GCC.
gdb/ChangeLog:
2019-12-13 Jozef Lawrynowicz <jozef.l@mittosystems.com>
* configure.tgt: Match msp430-*-elf* targets when configuring GDB.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/configure.tgt | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ecd2124..4f51389 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2019-12-13 Jozef Lawrynowicz <jozef.l@mittosystems.com> + + * configure.tgt: Match msp430-*-elf* targets when configuring GDB. + 2019-12-12 Tom Tromey <tom@tromey.com> * objfiles.h (struct objfile) <partial_symtabs>: Now a diff --git a/gdb/configure.tgt b/gdb/configure.tgt index b3717c7..ab4c098 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -454,7 +454,7 @@ mn10300-*-*) gdb_sim=../sim/mn10300/libsim.a ;; -msp430*-*-elf) +msp430-*-elf*) gdb_target_obs="msp430-tdep.o" gdb_sim=../sim/msp430/libsim.a ;; |