diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-03-11 11:54:07 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-03-11 11:54:07 -0700 |
commit | d74f1cc2561bf6ae6b0f21743402415408087654 (patch) | |
tree | a271c2b7372fb3eb8bba9bf01820bc5e627ba87f | |
parent | 41722f59d94a66dafef4e454d695aa81879fa0e3 (diff) | |
parent | f1e7cecf075d042d7fa616e6de04012bf7c4e2fc (diff) | |
download | crosstool-ng-d74f1cc2561bf6ae6b0f21743402415408087654.tar.gz crosstool-ng-d74f1cc2561bf6ae6b0f21743402415408087654.tar.bz2 crosstool-ng-d74f1cc2561bf6ae6b0f21743402415408087654.zip |
Merge pull request #55 from netzimme/master
add gdb 7.9 and 7.8.2
-rw-r--r-- | config/debug/gdb.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/debug/gdb.in b/config/debug/gdb.in index 9ca84f55..e6366fb7 100644 --- a/config/debug/gdb.in +++ b/config/debug/gdb.in @@ -33,12 +33,23 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config GDB_V_7_9 + bool + prompt "7.9" + select GDB_7_2_or_later + config GDB_V_linaro_7_8 bool prompt "linaro-7.8-2014.09" depends on DEBUG_GDB_SHOW_LINARO select GDB_7_2_or_later +config GDB_V_7_8_2 + bool + prompt "7.8.2" + select GDB_7_2_or_later + + config GDB_V_7_8_1 bool prompt "7.8.1" @@ -174,6 +185,8 @@ config GDB_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "7.9" if GDB_V_7_9 + default "7.8.2" if GDB_V_7_8_2 default "linaro-7.8-2014.09" if GDB_V_linaro_7_8 default "7.8.1" if GDB_V_7_8_1 default "7.8" if GDB_V_7_8 |