X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=Makefile;h=d0b4bc7601b458f33ae89772094caf4f7564b543;hp=88972b6e8286119e0de1234bcccb04cabdee1ab4;hb=1972732abfea710d3d7b61180971580d9e5081ce;hpb=0d464c772e9a22e02818c309b79f8cc724ebb891 diff --git a/Makefile b/Makefile index 88972b6e..d0b4bc76 100644 --- a/Makefile +++ b/Makefile @@ -7,13 +7,13 @@ CFLAGS += -ggdb -Ifrontend LDFLAGS += -lz -lpthread -ldl ifdef CROSS_COMPILE CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp -ffast-math +ASFLAGS += -mcpu=cortex-a8 -mfpu=neon endif ifndef DEBUG CFLAGS += -O2 endif -ifdef DRC_DBG -CFLAGS += -DDRC_DBG -endif +#DRC_DBG = 1 +#PCNT = 1 TARGET = pcsx all: $(TARGET) @@ -31,6 +31,10 @@ OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_ar endif OBJS += libpcsxcore/new_dynarec/emu_if.o libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c +ifdef DRC_DBG +libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64 +CFLAGS += -DDRC_DBG +endif # spu OBJS += plugins/dfsound/adsr.o plugins/dfsound/dma.o plugins/dfsound/oss.o plugins/dfsound/reverb.o \ @@ -52,6 +56,9 @@ OBJS += gui/Config.o gui/Plugin.o OBJS += frontend/main.o frontend/plugin.o frontend/plugin_lib.o OBJS += frontend/linux/fbdev.o +ifdef CROSS_COMPILE +OBJS += frontend/arm_utils.o +endif $(TARGET): $(OBJS) $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map