From 1123556297692b2ae93d6430bf3d7c0067bd2589 Mon Sep 17 00:00:00 2001 From: Ploggy Date: Fri, 3 Mar 2023 18:44:08 +0000 Subject: [PATCH 1/4] Update Makefile.libretro --- Makefile.libretro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.libretro b/Makefile.libretro index 108148f4579..1154c42fd08 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -333,14 +333,14 @@ else ifneq (,$(filter $(platform), ngc wii wiiu)) CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT) AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT) PLATFORM_DEFINES += -DGEKKO -mcpu=750 -meabi -mhard-float -DHAVE_STRTOF_L - PLATFORM_DEFINES += -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int -D_GNU_SOURCE + PLATFORM_DEFINES += -ffunction-sections -fdata-sections -D__wiiu__ -D__wut__ -D_GNU_SOURCE STATIC_LINKING = 1 DEFINES += -std=c99 HAVE_VFS_FD = 0 # Nintendo WiiU ifneq (,$(findstring wiiu,$(platform))) - PLATFORM_DEFINES += -DWIIU -DHW_RVL -mwup + PLATFORM_DEFINES += -DWIIU -DHW_RVL # Nintendo Wii else ifneq (,$(findstring wii,$(platform))) From 7a9e3dca49e12b25f205eddd244987a78547592c Mon Sep 17 00:00:00 2001 From: patchadamz Date: Thu, 27 Jun 2024 21:36:41 +0100 Subject: [PATCH 2/4] Update Makefile.libretro --- Makefile.libretro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.libretro b/Makefile.libretro index 30360902e09..f89cd109031 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -335,14 +335,14 @@ else ifneq (,$(filter $(platform), ngc wii wiiu)) CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT) AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT) PLATFORM_DEFINES += -DGEKKO -mcpu=750 -meabi -mhard-float -DHAVE_STRTOF_L - PLATFORM_DEFINES += -ffunction-sections -fdata-sections -D__wiiu__ -D__wut__ -D_GNU_SOURCE + PLATFORM_DEFINES += -D_GNU_SOURCE STATIC_LINKING = 1 DEFINES += -std=c99 HAVE_VFS_FD = 0 # Nintendo WiiU ifneq (,$(findstring wiiu,$(platform))) - PLATFORM_DEFINES += -DWIIU -DHW_RVL + PLATFORM_DEFINES += -DWIIU -DHW_RVL -ffunction-sections -fdata-sections -D__wiiu__ -D__wut__ # Nintendo Wii else ifneq (,$(findstring wii,$(platform))) From f1c4a4331d2c2ddba161dce8a21e42dc3ae84bb3 Mon Sep 17 00:00:00 2001 From: Ploggy Date: Fri, 28 Jun 2024 17:29:27 +0100 Subject: [PATCH 3/4] Update WiiU Makefile.libretro --- Makefile.libretro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.libretro b/Makefile.libretro index f89cd109031..31bafb61ada 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -335,7 +335,7 @@ else ifneq (,$(filter $(platform), ngc wii wiiu)) CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT) AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT) PLATFORM_DEFINES += -DGEKKO -mcpu=750 -meabi -mhard-float -DHAVE_STRTOF_L - PLATFORM_DEFINES += -D_GNU_SOURCE + PLATFORM_DEFINES += -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int -D_GNU_SOURCE STATIC_LINKING = 1 DEFINES += -std=c99 HAVE_VFS_FD = 0 From e0c96cae883375583fa243b7e8ee02009c61ad9d Mon Sep 17 00:00:00 2001 From: Ploggy Date: Fri, 28 Jun 2024 17:31:02 +0100 Subject: [PATCH 4/4] Update Makefile.libretro --- Makefile.libretro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.libretro b/Makefile.libretro index 31bafb61ada..2b36c1da44f 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -335,7 +335,7 @@ else ifneq (,$(filter $(platform), ngc wii wiiu)) CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT) AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT) PLATFORM_DEFINES += -DGEKKO -mcpu=750 -meabi -mhard-float -DHAVE_STRTOF_L - PLATFORM_DEFINES += -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int -D_GNU_SOURCE + PLATFORM_DEFINES += -D_GNU_SOURCE STATIC_LINKING = 1 DEFINES += -std=c99 HAVE_VFS_FD = 0 @@ -346,11 +346,11 @@ else ifneq (,$(filter $(platform), ngc wii wiiu)) # Nintendo Wii else ifneq (,$(findstring wii,$(platform))) - PLATFORM_DEFINES += -DHW_RVL -mrvl + PLATFORM_DEFINES += -DHW_RVL -mrvl -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int # Nintendo Game Cube else ifneq (,$(findstring ngc,$(platform))) - PLATFORM_DEFINES += -DHW_DOL -mrvl + PLATFORM_DEFINES += -DHW_DOL -mrvl -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int endif PLATFORM_DEFINES += -DHAVE_LOCALE