diff options
author | Joachim Nilsson <troglobit@gmail.com> | 2016-02-24 23:00:23 +0100 |
---|---|---|
committer | Joachim Nilsson <troglobit@gmail.com> | 2016-02-24 23:00:23 +0100 |
commit | 77d7a0f9272eeae4af2fff340f90f531c791726a (patch) | |
tree | 4b50dfdddbc4bfb61ae3aeeb15843e72d0260ecf /config/debug | |
parent | c280596907079d91b75226adc7ae559678ff0293 (diff) | |
download | crosstool-ng-77d7a0f9272eeae4af2fff340f90f531c791726a.tar.gz crosstool-ng-77d7a0f9272eeae4af2fff340f90f531c791726a.tar.bz2 crosstool-ng-77d7a0f9272eeae4af2fff340f90f531c791726a.zip |
gdb: Add support for v7.11, port patches from v7.10.1 that apply
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
Diffstat (limited to 'config/debug')
-rw-r--r-- | config/debug/gdb.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/debug/gdb.in b/config/debug/gdb.in index 77c362bc..2b33d33e 100644 --- a/config/debug/gdb.in +++ b/config/debug/gdb.in @@ -68,6 +68,11 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config GDB_V_7_11 + bool + prompt "7.11" + select GDB_7_2_or_later + config GDB_V_7_10_1 bool prompt "7.10.1" @@ -233,6 +238,7 @@ config GDB_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "7.11" if GDB_V_7_11 default "7.10.1" if GDB_V_7_10_1 default "7.10" if GDB_V_7_10 default "7.9.1" if GDB_V_7_9_1 |