From 6078b2a6b4ad99990ea26242c80d289ebeea1866 Mon Sep 17 00:00:00 2001 From: Aidan MacDonald Date: Fri, 19 Dec 2025 21:12:27 +0000 Subject: [PATCH] echoplayer: enable debug symbols by default This adds debug symbols to rockbox.elf & bootloader.elf to make debugging with GDB easier. This won't affect code that runs on the target because debug symbols are stripped from the final binary. Change-Id: I9efe207c63e8bd96404213aad96405be27030ae9 --- tools/configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/configure b/tools/configure index f49f66ed8e..ab91a7f86d 100755 --- a/tools/configure +++ b/tools/configure @@ -4332,6 +4332,9 @@ fi t_cpu="arm" t_manufacturer="stm32" t_model="echoplayer" + # generate debug symbols by default; these will be present in the + # initial '.elf' file but will be stripped from the target binary. + GCCOPTS="-g $GCCOPTS" ;; 280|surfansf28)