[Scummvm-git-logs] scummvm master -> 0db091d15ac2a1a6058c8f0d69df36d23bc3638f

spleen1981 noreply at scummvm.org
Sun Nov 26 17:32:50 UTC 2023


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6a01de3f73 LIBRETRO: BUILD: fix psvita defines
0db091d15a LIBRETRO: BUILD: disable libco for psvita


Commit: 6a01de3f7357c523120dc0994bcb2868cffb3f68
    https://github.com/scummvm/scummvm/commit/6a01de3f7357c523120dc0994bcb2868cffb3f68
Author: Giovanni Cascione (ing.cascione at gmail.com)
Date: 2023-11-26T18:32:12+01:00

Commit Message:
LIBRETRO: BUILD: fix psvita defines

Changed paths:
    backends/platform/libretro/Makefile


diff --git a/backends/platform/libretro/Makefile b/backends/platform/libretro/Makefile
index 1a4a6ac09c0..35734694f81 100644
--- a/backends/platform/libretro/Makefile
+++ b/backends/platform/libretro/Makefile
@@ -196,7 +196,9 @@ else ifeq ($(platform), vita)
    CC = arm-vita-eabi-gcc$(EXE_EXT)
    CXX = arm-vita-eabi-g++$(EXE_EXT)
    AR = arm-vita-eabi-ar$(EXE_EXT) rcs
-   DEFINES += -DVITA
+   DEFINES += -march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard
+   DEFINES += -fno-optimize-sibling-calls -mlong-calls -mword-relocations
+   DEFINES += -DVITA -DREDUCE_MEMORY_USAGE -DUNCACHED_PLUGINS -DPSP2 -DSYSTEM_NOT_SUPPORTING_D_TYPE
    LITE := 1
    STATIC_LINKING = 1
 
@@ -482,7 +484,7 @@ else ifeq ($(platform), osx)
    endif
 endif
 
-ifeq ($(platform), wiiu)
+ifneq (,$(findstring $(platform), wiiu vita))
    DEFINES += -Os
 else ifneq (,$(findstring $(platform), ios osx))
    DEFINES += -O1


Commit: 0db091d15ac2a1a6058c8f0d69df36d23bc3638f
    https://github.com/scummvm/scummvm/commit/0db091d15ac2a1a6058c8f0d69df36d23bc3638f
Author: Giovanni Cascione (ing.cascione at gmail.com)
Date: 2023-11-26T18:32:29+01:00

Commit Message:
LIBRETRO: BUILD: disable libco for psvita

Changed paths:
    backends/platform/libretro/Makefile


diff --git a/backends/platform/libretro/Makefile b/backends/platform/libretro/Makefile
index 35734694f81..1953ebdb7ee 100644
--- a/backends/platform/libretro/Makefile
+++ b/backends/platform/libretro/Makefile
@@ -199,6 +199,7 @@ else ifeq ($(platform), vita)
    DEFINES += -march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard
    DEFINES += -fno-optimize-sibling-calls -mlong-calls -mword-relocations
    DEFINES += -DVITA -DREDUCE_MEMORY_USAGE -DUNCACHED_PLUGINS -DPSP2 -DSYSTEM_NOT_SUPPORTING_D_TYPE
+   USE_LIBCO = 0
    LITE := 1
    STATIC_LINKING = 1
 




More information about the Scummvm-git-logs mailing list