mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
b7a8ba56ec
* Add retroarch package * libretro cores as separate packages * Add libretro-super package * Add core resources, move retroarch bin to /mnt/emus/retroarch dir * add NxEngine assets + correct indendt * [BOARD] add cores appLinks * [GENIMAGE] test -d before running cp to not stderr * [BOARD] add "cores" section in gmenu2x with all appLinks * add PRBOOM data *.wad file * [GENIMAGE] generate cores' script links in genimage.sh * Add scummvm core & downgrade * [GENIMAGE] don't run cores in verbose * resort `core links` and update their icons --------- Co-authored-by: Apaczer <94932128+Apaczer@users.noreply.github.com>
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
diff --git a/Makefile.miyoo b/Makefile.miyoo
|
|
index 751cdf2639..df9c37fc33 100644
|
|
--- a/Makefile.miyoo
|
|
+++ b/Makefile.miyoo
|
|
@@ -3,7 +3,7 @@
|
|
#########################
|
|
|
|
# Default toolchain directory
|
|
-TOOLCHAIN_DIR=/opt/miyoo
|
|
+TOOLCHAIN_DIR="$(STAGING_DIR)"
|
|
|
|
# All toolchain-related variables may be
|
|
# overridden via the command line
|
|
@@ -26,11 +26,11 @@ else
|
|
STRIP = $(TOOLCHAIN_DIR)/usr/bin/arm-linux-strip
|
|
endif
|
|
|
|
-GCW0_SDL_CONFIG ?= $(TOOLCHAIN_DIR)/usr/arm-miyoo-linux-uclibcgnueabi/sysroot/usr/bin/sdl-config
|
|
-GCW0_FREETYPE_CONFIG ?= $(TOOLCHAIN_DIR)/usr/arm-miyoo-linux-uclibcgnueabi/sysroot/usr/bin/freetype-config
|
|
+GCW0_SDL_CONFIG ?= $(TOOLCHAIN_DIR)/usr/bin/sdl-config
|
|
+GCW0_FREETYPE_CONFIG ?= $(TOOLCHAIN_DIR)/usr/bin/freetype-config
|
|
|
|
-GCW0_INC_DIR ?= $(TOOLCHAIN_DIR)/usr/arm-miyoo-linux-uclibcgnueabi/sysroot/usr/include
|
|
-GCW0_LIB_DIR ?= $(TOOLCHAIN_DIR)/usr/arm-miyoo-linux-uclibcgnueabi/sysroot/usr/lib
|
|
+GCW0_INC_DIR ?= $(TOOLCHAIN_DIR)/usr/include
|
|
+GCW0_LIB_DIR ?= $(TOOLCHAIN_DIR)/usr/lib
|
|
|
|
#########################
|
|
#########################
|