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.

3ds: Minor Makefile changes

- Fix the macOS check so that it only includes the linker command line and not the whole block
- Remove a dash from the .map file name, likely a typo
- Don't remove the .elf file after packaging, so that it can be used to debug any issues with the build

Change-Id: I9639263169e027c9702ac617eb8209b1707e11f4

+2 -6
+2 -6
packaging/ctru/ctru.make
··· 87 87 $(call PRINTS,LD $(BINARY))$(CC) -o $@ $^ $(LDOPTS) $(GLOBAL_LDOPTS) -Wl,$(LDMAP_OPT),$(BUILDDIR)/rockbox.map 88 88 else 89 89 $(call PRINTS,LD $(BINARY))$(CC) -o $@ -Wl,--start-group $^ -Wl,--end-group $(LDOPTS) $(GLOBAL_LDOPTS) \ 90 - -Wl,$(LDMAP_OPT),$(BUILDDIR)/rockbox-.map 90 + -Wl,$(LDMAP_OPT),$(BUILDDIR)/rockbox.map 91 + endif 91 92 @mv $(BINARY) $(BINARY).elf 92 93 smdhtool --create "$(APP_TITLE)" "$(APP_DESCRIPTION)" "$(APP_AUTHOR)" $(APP_ICON) "rockbox.smdh" 93 94 3dsxtool $(BINARY).elf $(BINARY).3dsx --smdh="rockbox.smdh" 94 95 $(BANNERTOOL) makebanner $(BANNER_IMAGE_ARG) "$(BANNER_IMAGE)" $(BANNER_AUDIO_ARG) "$(BANNER_AUDIO)" -o "$(BUILDDIR)/banner.bnr" 95 96 $(BANNERTOOL) makesmdh -s "$(APP_TITLE)" -l "$(APP_DESCRIPTION)" -p "$(APP_AUTHOR)" -i "$(APP_ICON)" -f "$(ICON_FLAGS)" -o "$(BUILDDIR)/icon.icn" 96 97 $(MAKEROM) -f cia -o "$(BINARY).cia" -target t -exefslogo $(MAKEROM_ARGS) 97 - ifndef DEBUG 98 - $(SILENT)rm $(BINARY).elf 99 - endif 100 - endif 101 -