Merge pull request #117 from saulfabregwiivc/ngc-fix
Fix GameCube builds of VBA-M Libretro too
This commit is contained in:
commit
b5a4788747
|
@ -57,6 +57,10 @@ include:
|
||||||
- project: 'libretro-infrastructure/ci-templates'
|
- project: 'libretro-infrastructure/ci-templates'
|
||||||
file: '/vita-static.yml'
|
file: '/vita-static.yml'
|
||||||
|
|
||||||
|
# Nintendo GameCube
|
||||||
|
- project: 'libretro-infrastructure/ci-templates'
|
||||||
|
file: '/ngc-static.yml'
|
||||||
|
|
||||||
# Nintendo Wii
|
# Nintendo Wii
|
||||||
- project: 'libretro-infrastructure/ci-templates'
|
- project: 'libretro-infrastructure/ci-templates'
|
||||||
file: '/wii-static.yml'
|
file: '/wii-static.yml'
|
||||||
|
@ -172,6 +176,12 @@ libretro-build-vita:
|
||||||
- .libretro-vita-static-retroarch-master
|
- .libretro-vita-static-retroarch-master
|
||||||
- .core-defs
|
- .core-defs
|
||||||
|
|
||||||
|
# Nintendo GameCube
|
||||||
|
libretro-build-ngc:
|
||||||
|
extends:
|
||||||
|
- .libretro-ngc-static-retroarch-master
|
||||||
|
- .core-defs
|
||||||
|
|
||||||
# Nintendo Wii
|
# Nintendo Wii
|
||||||
libretro-build-wii:
|
libretro-build-wii:
|
||||||
extends:
|
extends:
|
||||||
|
|
|
@ -286,7 +286,7 @@ else ifeq ($(platform), ngc)
|
||||||
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT)
|
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT)
|
||||||
CXX = $(DEVKITPPC)/bin/powerpc-eabi-g++$(EXE_EXT)
|
CXX = $(DEVKITPPC)/bin/powerpc-eabi-g++$(EXE_EXT)
|
||||||
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT)
|
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT)
|
||||||
ENDIANNESS_DEFINES += -DMSB_FIRST
|
ENDIANNESS_DEFINES += -DMSB_FIRST -DWORDS_BIGENDIAN=1
|
||||||
PLATFORM_DEFINES += -DGEKKO -DHW_DOL -mrvl -mcpu=750 -meabi -mhard-float -D__ppc__
|
PLATFORM_DEFINES += -DGEKKO -DHW_DOL -mrvl -mcpu=750 -meabi -mhard-float -D__ppc__
|
||||||
PLATFORM_DEFINES += -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int
|
PLATFORM_DEFINES += -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int
|
||||||
STATIC_LINKING=1
|
STATIC_LINKING=1
|
||||||
|
|
Loading…
Reference in New Issue