From 499d645dd005fecd0ebd5acc7622e5210cfd7d59 Mon Sep 17 00:00:00 2001 From: Ernesto Ramirez Date: Mon, 14 Sep 2015 19:04:56 -0500 Subject: (Wii) Added buildfix. It now compiles and runs on this platform. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 06a9498..573b8fa 100644 --- a/Makefile +++ b/Makefile @@ -166,6 +166,14 @@ else ifeq ($(platform), ctr) PLATFORM_DEFINES := -D_3DS STATIC_LINKING = 1 +# Nintendo Wii +else ifeq ($(platform), wii) + TARGET := $(TARGET_NAME)_libretro_wii.a + CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT) + AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT) + CFLAGS += -DGEKKO -DHW_RVL -mrvl -mcpu=750 -meabi -mhard-float -D__ppc__ -DMSB_FIRST + STATIC_LINKING = 1 + else TARGET := $(TARGET_NAME)_libretro.dll CC = gcc -- cgit v1.2.3