aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornotaz2011-10-30 01:58:49 +0300
committernotaz2011-10-30 23:57:08 +0200
commitd84e376741b37109597cb3a08d31def4de3fc598 (patch)
tree6e9dd3bd34888baca0c668e42e4f7d8e58f31101 /Makefile
parent2aa6a3a0cd427c289fd906c5ada5b8e718da6c31 (diff)
downloadpcsx_rearmed-d84e376741b37109597cb3a08d31def4de3fc598.tar.gz
pcsx_rearmed-d84e376741b37109597cb3a08d31def4de3fc598.tar.bz2
pcsx_rearmed-d84e376741b37109597cb3a08d31def4de3fc598.zip
update build for OABI
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f636c16..b25c861 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ TARGET = pcsx
ARCH = $(shell $(GCC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}')
CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
-LDFLAGS += -lz -lpthread -ldl -lpng
+LDFLAGS += -lpthread -ldl -lpng -lz -lm
ifndef DEBUG
CFLAGS += -O2 -DNDEBUG
endif
@@ -34,7 +34,7 @@ ASFLAGS += -mcpu=cortex-a8 -mfpu=neon
endif
ifeq "$(ARM926)" "1"
GCC_CFLAGS += -mcpu=arm926ej-s -mtune=arm926ej-s
-ASFLAGS += -mcpu=arm926ej-s
+ASFLAGS += -mcpu=arm926ej-s -mfloat-abi=softfp
endif
endif
CFLAGS += $(GCC_CFLAGS)