diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-08-30 03:37:12 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-08-30 03:37:12 +0000 |
commit | 67cc4f3e6e8820f0e11078e513bc8ccb2dbdfef3 (patch) | |
tree | c1270d63d5cecf89291f45e0a5e02d2a7539ab5e /toolchain/gdb/Config.in | |
parent | 6b632ad624ca771a6d1fe2dede82e5fa69bb2028 (diff) | |
download | buildroot-novena-67cc4f3e6e8820f0e11078e513bc8ccb2dbdfef3.tar.gz buildroot-novena-67cc4f3e6e8820f0e11078e513bc8ccb2dbdfef3.zip |
Add in support for downloading and building the latest snapshot of GDB. If you want to debug NPTL binaries, you'll need the latest and greatest. Patches for 6.3 will be forward ported where applicable later this week.
Diffstat (limited to 'toolchain/gdb/Config.in')
-rw-r--r-- | toolchain/gdb/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in index 1e44dbde7..3ca91e97a 100644 --- a/toolchain/gdb/Config.in +++ b/toolchain/gdb/Config.in @@ -33,11 +33,15 @@ choice config BR2_GDB_VERSION_6_3 bool "gdb 6.3" + config BR2_GDB_VERSION_SNAPSHOT + bool "gdb snapshot" + endchoice config BR2_GDB_VERSION string default "6.2.1" if BR2_GDB_VERSION_6_2_1 default "6.3" if BR2_GDB_VERSION_6_3 + default "snapshot" if BR2_GDB_VERSION_SNAPSHOT |