diff options
author | notaz | 2013-04-01 21:05:36 +0300 |
---|---|---|
committer | notaz | 2013-04-01 21:05:36 +0300 |
commit | 55bf68531a29da02569d0c53caa2f08608a191bb (patch) | |
tree | 2e0a2ca1d897cdc49ad44a29f1ea65caaf29ab72 /Makefile.libretro | |
parent | 98dacc2f457677c6f4460971bd838d0e13ba5ca3 (diff) | |
parent | b09a1d34f7fa3f8cee6b24ac33e3d98efad7712f (diff) | |
download | pcsx_rearmed-55bf68531a29da02569d0c53caa2f08608a191bb.tar.gz pcsx_rearmed-55bf68531a29da02569d0c53caa2f08608a191bb.tar.bz2 pcsx_rearmed-55bf68531a29da02569d0c53caa2f08608a191bb.zip |
Merge branch 'master' into libretro
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index c062048..2b20dfa 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -17,6 +17,7 @@ CC ?= gcc CXX ?= g++ AS ?= as CC_AS ?= $(CC) +CFLAGS ?= ifeq ($(platform), unix) TARGET := libretro_pcsx_rearmed.so @@ -78,8 +79,8 @@ 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_pcsx_rearmed_qnx.so - CC = qcc -Vgcc_ntoarmv7le - AR = qcc -Vgcc_ntoarmv7le + CC ?= qcc -Vgcc_ntoarmv7le + CC_AS = $(CC) HAVE_NEON = 1 USE_DYNAREC = 1 DRC_CACHE_BASE = 0 @@ -94,8 +95,8 @@ else ifeq ($(platform), arm) DRC_CACHE_BASE = 0 BUILTIN_GPU = neon ARCH = arm - CFLAGS += -DBASE_ADDR_FIXED=0 -marm -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp - ASFLAGS += -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp + CFLAGS += -marm -mcpu=cortex-a8 -mfpu=neon + ASFLAGS += -mcpu=cortex-a8 -mfpu=neon else TARGET := pcsx_rearmed_retro.dll CC = gcc |