diff options
author | Francisco José García García | 2020-08-05 23:24:21 +0200 |
---|---|---|
committer | GitHub | 2020-08-05 23:24:21 +0200 |
commit | ddd39f209f4ce6f03ed3198d7d58c2e36565baa9 (patch) | |
tree | c75646e0e484ec5d3780e11147030fe9892fc24f | |
parent | edfb913768c9ebd50a0ba810697e2ab7056bcc3e (diff) | |
download | pcsx_rearmed-ddd39f209f4ce6f03ed3198d7d58c2e36565baa9.tar.gz pcsx_rearmed-ddd39f209f4ce6f03ed3198d7d58c2e36565baa9.tar.bz2 pcsx_rearmed-ddd39f209f4ce6f03ed3198d7d58c2e36565baa9.zip |
[Vita] workaround multiple symbols
-rw-r--r-- | Makefile.libretro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index 8f48a32..79732b1 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -185,7 +185,7 @@ else ifeq ($(platform), vita) CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -marm CFLAGS += -fsingle-precision-constant -mword-relocations -fno-unwind-tables CFLAGS += -fno-asynchronous-unwind-tables -ftree-vectorize -funroll-loops - CFLAGS += -fno-optimize-sibling-calls + CFLAGS += -fno-optimize-sibling-calls -fcommon CFLAGS += -I$(VITASDK)/include -Ifrontend/vita CFLAGS += -DNO_SOCKET -DNO_OS -DNO_DYLIB ASFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon |