File: use-gdb-multiarch

package info (click to toggle)
valinor 1.1.4-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 320 kB
  • sloc: python: 428; makefile: 24; sh: 7
file content (19 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Replace arm-none-eabi-gdb with gdb-multiarch
 Since the introduction of gdb-multiarch, arm-none-eabi-gdb is no
 longer available in Debian, so we replace it with the multiple-arch
 aware version of gdb from gdb-multiarch
Author: Nick Morrott <knowledgejunkie@gmail.com>
Forwarded: not-needed
Last-Update: 2018-12-18
---
--- a/valinor/ide_detection.py
+++ b/valinor/ide_detection.py
@@ -67,7 +67,7 @@
 
 
 def _find_arm_none_eabi_gdb():
-    return find_executable('arm-none-eabi-gdb')
+    return find_executable('gdb')
 
 
 def _uvision_launcher(uvision_exe):