From 2b189fe810bc97baf3aa46999bfb731a558de580 Mon Sep 17 00:00:00 2001 From: jdgleaver Date: Fri, 23 Oct 2020 16:06:15 +0100 Subject: [PATCH] OpenDingux: Fix makefile target --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 62554cb..cad71fa 100644 --- a/Makefile +++ b/Makefile @@ -401,9 +401,9 @@ else ifeq ($(platform), emscripten) # GCW0 else ifeq ($(platform), gcw0) TARGET := $(TARGET_NAME)_libretro.so - CC ?= /opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc - CXX ?= /opt/gcw0-toolchain/usr/bin/mipsel-linux-g++ - AR ?= /opt/gcw0-toolchain/usr/bin/mipsel-linux-ar + CC = /opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc + CXX = /opt/gcw0-toolchain/usr/bin/mipsel-linux-g++ + AR = /opt/gcw0-toolchain/usr/bin/mipsel-linux-ar SHARED := -shared -nostdlib -Wl,--version-script=link.T fpic := -fPIC CFLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float