libretro-ppsspp: remove unneeded patch

This commit is contained in:
Peter Vicman 2017-08-19 18:43:27 +02:00
parent 32406a7410
commit d8ed8c9027
2 changed files with 5 additions and 19 deletions

View File

@ -50,19 +50,19 @@ pre_make_target() {
make_target() {
case $PROJECT in
RPi)
make -C libretro platform=armv6-gles-hardfloat-arm1176jzf-s
make -C libretro CC=$CC CXX=$CXX platform=armv6-gles-hardfloat-arm1176jzf-s
;;
RPi2)
make -C libretro platform=armv7-neon-gles-hardfloat-cortex-a7
make -C libretro CC=$CC CXX=$CXX platform=armv7-neon-gles-hardfloat-cortex-a7
;;
imx6)
make -C libretro platform=armv7-neon-gles-hardfloat-cortex-a9
make -C libretro CC=$CC CXX=$CXX platform=armv7-neon-gles-hardfloat-cortex-a9
;;
WeTek_Play|WeTek_Core)
make -C libretro platform=armv7-neon-gles-hardfloat-cortex-a9
make -C libretro CC=$CC CXX=$CXX platform=armv7-neon-gles-hardfloat-cortex-a9
;;
Generic)
make -C libretro
make -C libretro CC=$CC CXX=$CXX
;;
esac
}

View File

@ -1,14 +0,0 @@
diff -Naur a/libretro/Makefile b/libretro/Makefile
--- a/libretro/Makefile 2016-01-19 10:11:20.000000000 +0100
+++ b/libretro/Makefile 2016-01-19 10:27:00.009866912 +0100
@@ -201,8 +201,8 @@
# ARM
else ifneq (,$(findstring armv,$(platform)))
- CC = gcc
- CXX = g++
+ CC ?= gcc
+ CXX ?= g++
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
LDFLAGS += -shared -Wl,--version-script=link.T -Wl,--no-undefined