From 4a8f6ac674efa11636060c3c8f5e5ec3b61218c6 Mon Sep 17 00:00:00 2001 From: Aaron Kling Date: Fri, 7 Jun 2019 14:09:35 -0500 Subject: libretro: jni: build with default compiler Google has deprecated the use of gcc --- jni/Application.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/jni/Application.mk b/jni/Application.mk index 81ea664..a252a72 100644 --- a/jni/Application.mk +++ b/jni/Application.mk @@ -1,2 +1 @@ APP_ABI := all -NDK_TOOLCHAIN_VERSION := 4.9 -- cgit v1.2.3 From 4cf9eb99e3a2b6bb527ba115b068ad17bcbc827b Mon Sep 17 00:00:00 2001 From: Aaron Kling Date: Fri, 7 Jun 2019 14:06:29 -0500 Subject: libretro: allow mingw cross compile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 87733b5..f2c2130 100644 --- a/Makefile +++ b/Makefile @@ -297,7 +297,7 @@ CFLAGS += -D_CRT_SECURE_NO_DEPRECATE NO_GCC = 1 else TARGET := $(TARGET_NAME)_libretro.dll - CC = gcc + CC ?= gcc fpic := SHARED := -shared -Wl,--no-undefined -Wl,--version-script=libretro/link.T LD_FLAGS += -static-libgcc -static-libstdc++ -lwinmm -- cgit v1.2.3