Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

simulator: debugging: Disable -Os compiler optimizations when DEBUG is defined

Otherwise, breakpoints may not correspond with the source code

Change-Id: I0f8d4f578bde52c0219923d8be28e01c66c8dfbc

authored by

Roman Artiukhin and committed by
Solomon Peachy
5b61c79c eb2146d6

+5 -1
+5 -1
tools/configure
··· 260 260 261 261 app_type=$1 262 262 winbuild="" 263 - GCCOPTS=`echo $CCOPTS | sed -e s/-ffreestanding// -e s/-nostdlib// -e s/-Wundef//` 263 + GCCOPTS=`echo $CCOPTS | sed -e s/\ -ffreestanding// -e s/\ -nostdlib// -e s/\ -Wundef//` 264 + 265 + if [ "$debug" ]; then 266 + GCCOPTS=`echo $GCCOPTS | sed -e s/\ -Os//` 267 + fi 264 268 265 269 GCCOPTS="$GCCOPTS -fno-builtin -g" 266 270