diff options
author | notaz | 2010-12-06 01:50:14 +0200 |
---|---|---|
committer | notaz | 2010-12-06 19:21:54 +0200 |
commit | 3eb78778d86512b8811be2e3e469690c2171641a (patch) | |
tree | 81dcca17cdf8d0c75c17c71c59fc4fb62bdd1013 /Makefile | |
parent | 0d464c772e9a22e02818c309b79f8cc724ebb891 (diff) | |
download | pcsx_rearmed-3eb78778d86512b8811be2e3e469690c2171641a.tar.gz pcsx_rearmed-3eb78778d86512b8811be2e3e469690c2171641a.tar.bz2 pcsx_rearmed-3eb78778d86512b8811be2e3e469690c2171641a.zip |
drc: small debug improvement
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -11,9 +11,7 @@ endif ifndef DEBUG CFLAGS += -O2 endif -ifdef DRC_DBG -CFLAGS += -DDRC_DBG -endif +#DRC_DBG = 1 TARGET = pcsx all: $(TARGET) @@ -31,6 +29,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 \ |