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.

coldfire: Silence a warning generated by GCC >= 9

Basically, there are weak aliases for all possible IRQ handlers,
pointing at a NORETURN function. GCC complains that the aliases
don't have the same attribute, but that's actually what we want.

Change-Id: I7f877e00193ed457589c8442db82e93ddea0d60a

+5
+5
firmware/target/coldfire/system-coldfire.c
··· 26 26 #include "lcd.h" 27 27 #include "font.h" 28 28 29 + #if __GNUC__ >= 9 30 + #pragma GCC diagnostic push 31 + #pragma GCC diagnostic ignored "-Wmissing-attributes" 32 + #endif 33 + 29 34 #define default_interrupt(name) \ 30 35 extern __attribute__((weak,alias("UIE"))) void name (void) 31 36