From c4eddacad79509c9786672a2abab1ba45de600c7 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 14 Aug 2022 17:56:56 +0200 Subject: [PATCH] package/gdb: switch to GDB 11.x as the Now that GDB 12.x has been added, and GDB 9.x removed, we can make GDB 11.x the default version. Signed-off-by: Thomas Petazzoni [yann.morin.1998@free.fr: split off to its own patch] Signed-off-by: Yann E. MORIN --- package/gdb/Config.in.host | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/gdb/Config.in.host b/package/gdb/Config.in.host index 9876c4e8bc..33ffc632ee 100644 --- a/package/gdb/Config.in.host +++ b/package/gdb/Config.in.host @@ -41,7 +41,7 @@ config BR2_PACKAGE_HOST_GDB_SIM choice prompt "GDB debugger Version" - default BR2_GDB_VERSION_10 + default BR2_GDB_VERSION_11 depends on !BR2_arc help Select the version of gdb you wish to use. @@ -63,8 +63,8 @@ endif config BR2_GDB_VERSION string default "arc-2020.09-release-gdb" if BR2_arc - default "10.2" if BR2_GDB_VERSION_10 || !BR2_PACKAGE_HOST_GDB - default "11.2" if BR2_GDB_VERSION_11 + default "10.2" if BR2_GDB_VERSION_10 + default "11.2" if BR2_GDB_VERSION_11 || !BR2_PACKAGE_HOST_GDB default "12.1" if BR2_GDB_VERSION_12 depends on BR2_PACKAGE_GDB || BR2_PACKAGE_HOST_GDB