aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortwinaphex2013-04-30 16:31:52 +0200
committertwinaphex2013-04-30 16:31:52 +0200
commit3d2350ad075a5c07a1fb36229f2c53a295ace62e (patch)
tree593ca3e198751178fbf38592de77bcc888ee0585
parentde0e733ec3b6052537301f647e20679a01a1fd61 (diff)
downloadpcsx_rearmed-3d2350ad075a5c07a1fb36229f2c53a295ace62e.tar.gz
pcsx_rearmed-3d2350ad075a5c07a1fb36229f2c53a295ace62e.tar.bz2
pcsx_rearmed-3d2350ad075a5c07a1fb36229f2c53a295ace62e.zip
(QNX) Compilation fix
-rw-r--r--Makefile.libretro6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.libretro b/Makefile.libretro
index 7edf54d..1ab4cc4 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -81,15 +81,15 @@ else ifeq ($(platform), wii)
CFLAGS += -DGEKKO -DHW_RVL -mrvl -mcpu=750 -meabi -mhard-float -DBLARGG_BIG_ENDIAN=1 -D__ppc__
else ifeq ($(platform), qnx)
TARGET := libretro_$(TARGET_NAME)_qnx.so
- CC ?= qcc -Vgcc_ntoarmv7le
+ CC = qcc -Vgcc_ntoarmv7le
CC_AS = $(CC)
HAVE_NEON = 1
USE_DYNAREC = 1
DRC_CACHE_BASE = 0
BUILTIN_GPU = neon
ARCH = arm
- CFLAGS += -DBASE_ADDR_FIXED=0 -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
- ASFLAGS += -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp
+ CFLAGS += -DBASE_ADDR_FIXED=0 -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a9 -mtune=cortex-a9 -mfpu=neon -mfloat-abi=softfp
+ ASFLAGS += -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=softfp
else ifeq ($(platform), arm)
TARGET := $(TARGET_NAME)_libretro.so
HAVE_NEON = 1