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):
|