misc: avoid assertion failure when state save fails
[pcsx_rearmed.git] / Makefile
CommitLineData
4132e8ca 1# Makefile for PCSX ReARMed
a80ae4a0 2
61bc6d40 3# default stuff goes here, so that config can override
9aff1963 4TARGET ?= pcsx
da710571 5CFLAGS += -Wall -ggdb -Iinclude -ffast-math
f95a77f7 6ifndef DEBUG
cfbd3c6e 7CFLAGS += -O2 -DNDEBUG
b60f2812 8endif
36c76c86
PC
9ifeq ($(DEBUG_ASAN), 1)
10CFLAGS += -fsanitize=address
11endif
9165d434 12CFLAGS += -DP_HAVE_MMAP=$(if $(NO_MMAP),0,1) \
13 -DP_HAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
4bb8d7e1
PC
14 -DP_HAVE_POSIX_MEMALIGN=$(if $(NO_POSIX_MEMALIGN),0,1) \
15 -DDISABLE_MEM_LUTS=0
61bc6d40 16CXXFLAGS += $(CFLAGS)
4132e8ca 17#DRC_DBG = 1
18#PCNT = 1
80c2304e 19
38c2028e 20all: config.mak target_ plugins_
de38f20e 21
9aff1963 22ifndef NO_CONFIG_MAK
4132e8ca 23ifneq ($(wildcard config.mak),)
24config.mak: ./configure
25 @echo $@ is out-of-date, running configure
26 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
27include config.mak
28else
29config.mak:
30 @echo "Please run ./configure before running make!"
31 @exit 1
32endif
9aff1963 33else # NO_CONFIG_MAK
34config.mak:
35endif
36
4132e8ca 37-include Makefile.local
80c2304e 38
9aff1963 39CC_LINK ?= $(CC)
40CC_AS ?= $(CC)
22fa3f2b 41LDFLAGS += $(MAIN_LDFLAGS)
36c76c86
PC
42ifeq ($(DEBUG_ASAN), 1)
43LDFLAGS += -static-libasan
44endif
9aff1963 45EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
07c13dfd 46LDLIBS += $(MAIN_LDLIBS)
e0aec5ee 47ifdef PCNT
48CFLAGS += -DPCNT
49endif
61bc6d40 50
80c2304e 51# core
7d7672a5 52OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/database.o \
53 libpcsxcore/decode_xa.o libpcsxcore/mdec.o \
80c2304e 54 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
0890ae15 55 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o \
9a0a61d2 56 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o \
57 libpcsxcore/psxevents.o libpcsxcore/r3000a.o \
abf09485 58 libpcsxcore/sio.o libpcsxcore/spu.o libpcsxcore/gpu.o
59774ed0 59OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
7d7672a5 60#OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o
59774ed0 61ifeq "$(ARCH)" "arm"
62OBJS += libpcsxcore/gte_arm.o
63endif
57467c77 64ifeq "$(HAVE_NEON_ASM)" "1"
8cfbda97 65OBJS += libpcsxcore/gte_neon.o
66endif
305c8c93 67libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
ab948f7e 68
f95a77f7 69# dynarec
4132e8ca 70ifeq "$(USE_DYNAREC)" "1"
be516ebe 71OBJS += libpcsxcore/new_dynarec/new_dynarec.o
7e605697 72OBJS += libpcsxcore/new_dynarec/pcsxmem.o
be516ebe 73 ifeq "$(ARCH)" "arm"
74 OBJS += libpcsxcore/new_dynarec/linkage_arm.o
687b4580 75 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c
57467c77 76 else ifneq (,$(findstring $(ARCH),aarch64 arm64))
be516ebe 77 OBJS += libpcsxcore/new_dynarec/linkage_arm64.o
687b4580 78 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c
be516ebe 79 else
80 $(error no dynarec support for architecture $(ARCH))
81 endif
448bbcae 82else
41e82ad4 83CFLAGS += -DDRC_DISABLE
7139f3c8 84endif
9a0a61d2 85OBJS += libpcsxcore/new_dynarec/emu_if.o
687b4580 86libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
3eb78778 87ifdef DRC_DBG
88libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
89CFLAGS += -DDRC_DBG
90endif
2a014d73 91ifeq "$(BASE_ADDR_DYNAMIC)" "1"
92libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
a327ad27 93endif
f95a77f7 94
e906c010 95# spu
ee849648 96OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
07c13dfd 97 plugins/dfsound/registers.o plugins/dfsound/spu.o \
98 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
6d866bb7 99plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
100 plugins/dfsound/xa.c
3a721c1f 101ifeq "$(ARCH)" "arm"
b17618c0 102OBJS += plugins/dfsound/arm_utils.o
103endif
5514a050 104ifeq "$(HAVE_C64_TOOLS)" "1"
105plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
106plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
8886a808 107frontend/menu.o: CFLAGS += -DC64X_DSP
5514a050 108endif
07c13dfd 109ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
110plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
de38f20e 111OBJS += plugins/dfsound/oss.o
112endif
07c13dfd 113ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
114plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
de38f20e 115OBJS += plugins/dfsound/alsa.o
4132e8ca 116LDLIBS += -lasound
117endif
07c13dfd 118ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
119plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
d8a2f79b 120OBJS += plugins/dfsound/sdl.o
121endif
07c13dfd 122ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
123plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
124OBJS += plugins/dfsound/pulseaudio.o
125endif
126ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
127plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
de38f20e 128endif
129
61bc6d40 130# builtin gpu
131OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
61bc6d40 132ifeq "$(BUILTIN_GPU)" "neon"
57467c77 133OBJS += plugins/gpu_neon/psx_gpu_if.o
90ca4913 134plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
135plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
57467c77 136frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON
137 ifeq "$(HAVE_NEON_ASM)" "1"
138 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
139 else
140 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o
141 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD
142 plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD
143 endif
61bc6d40 144endif
145ifeq "$(BUILTIN_GPU)" "peops"
2ef486ee 146# note: code is not safe for strict-aliasing? (Castlevania problems)
62d7fa95 147plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
148plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
149OBJS += plugins/dfxvideo/gpulib_if.o
90ca4913 150endif
5a920d32 151ifeq "$(BUILTIN_GPU)" "unai_old"
152OBJS += plugins/gpu_unai_old/gpulib_if.o
61bc6d40 153ifeq "$(ARCH)" "arm"
5a920d32 154OBJS += plugins/gpu_unai_old/gpu_arm.o
61bc6d40 155endif
5a920d32 156plugins/gpu_unai_old/gpulib_if.o: CFLAGS += -DREARMED -O3
61bc6d40 157CC_LINK = $(CXX)
b60f2812 158endif
e0c692d9 159
4cfc568d 160ifeq "$(BUILTIN_GPU)" "unai"
161OBJS += plugins/gpu_unai/gpulib_if.o
0bfe8d59 162ifeq "$(ARCH)" "arm"
4cfc568d 163OBJS += plugins/gpu_unai/gpu_arm.o
0bfe8d59 164endif
e223fa15 165plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -DUSE_GPULIB=1 -O3
0bfe8d59 166CC_LINK = $(CXX)
167endif
168
47bf65ab 169# cdrcimg
47bf65ab 170OBJS += plugins/cdrcimg/cdrcimg.o
68e7d409 171#ifeq "$(CHD_SUPPORT)" "1"
00f0670c 172OBJS += libchdr/src/libchdr_bitstream.o
173OBJS += libchdr/src/libchdr_cdrom.o
174OBJS += libchdr/src/libchdr_chd.o
175OBJS += libchdr/src/libchdr_flac.o
176OBJS += libchdr/src/libchdr_huffman.o
177OBJS += libchdr/deps/lzma-19.00/src/Alloc.o libchdr/deps/lzma-19.00/src/Bra86.o libchdr/deps/lzma-19.00/src/BraIA64.o libchdr/deps/lzma-19.00/src/CpuArch.o libchdr/deps/lzma-19.00/src/Delta.o
178OBJS += libchdr/deps/lzma-19.00/src/LzFind.o libchdr/deps/lzma-19.00/src/Lzma86Dec.o libchdr/deps/lzma-19.00/src/LzmaDec.o libchdr/deps/lzma-19.00/src/LzmaEnc.o libchdr/deps/lzma-19.00/src/Sort.o
68e7d409 179CFLAGS += -DHAVE_CHD -Ilibchdr/include
180libpcsxcore/cdriso.o: CFLAGS += -Wno-unused-function
27f734f9 181libchdr/src/%.o: CFLAGS += -Wno-unused -Ilibchdr/deps/lzma-19.00/include -std=gnu11
68e7d409 182libchdr/deps/lzma-19.00/src/%.o: CFLAGS += -Wno-unused -D_7ZIP_ST -Ilibchdr/deps/lzma-19.00/include
183#endif
e906c010 184
cc56203b 185# frontend/gui
c82f907a 186OBJS += frontend/cspace.o
57467c77 187ifeq "$(HAVE_NEON_ASM)" "1"
c82f907a 188OBJS += frontend/cspace_neon.o
57467c77 189frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
d57557c0 190else
191ifeq "$(ARCH)" "arm"
192OBJS += frontend/cspace_arm.o
57467c77 193frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
d57557c0 194endif
c82f907a 195endif
196
4132e8ca 197ifeq "$(PLATFORM)" "generic"
5b9aa749 198OBJS += frontend/libpicofe/in_sdl.o
199OBJS += frontend/libpicofe/plat_sdl.o
cc56203b 200OBJS += frontend/libpicofe/plat_dummy.o
201OBJS += frontend/libpicofe/linux/in_evdev.o
5b9aa749 202OBJS += frontend/plat_sdl.o
203ifeq "$(HAVE_GLES)" "1"
2c616080 204OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
5b9aa749 205LDLIBS += $(LDLIBS_GLES)
206frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
2c616080 207frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
5b9aa749 208frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
209frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
210endif
cc56203b 211USE_PLUGIN_LIB = 1
38c2028e 212USE_FRONTEND = 1
4132e8ca 213endif
55b0eeea 214ifeq "$(PLATFORM)" "pandora"
cc56203b 215OBJS += frontend/libpicofe/pandora/plat.o
216OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
217OBJS += frontend/libpicofe/linux/in_evdev.o
218OBJS += frontend/plat_pandora.o frontend/plat_omap.o
da710571 219frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
3aba4185 220frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
cc56203b 221USE_PLUGIN_LIB = 1
38c2028e 222USE_FRONTEND = 1
4132e8ca 223endif
55b0eeea 224ifeq "$(PLATFORM)" "caanoo"
cc56203b 225OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
226OBJS += frontend/libpicofe/gp2x/soc_pollux.o
227OBJS += frontend/libpicofe/linux/in_evdev.o
faf2b2aa 228OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
da710571 229frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
cc56203b 230USE_PLUGIN_LIB = 1
38c2028e 231USE_FRONTEND = 1
232endif
233ifeq "$(PLATFORM)" "maemo"
baaef67b 234OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
38c2028e 235maemo/%.o: maemo/%.c
cc56203b 236USE_PLUGIN_LIB = 1
a76fd953 237LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
7010034e 238CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
a76fd953
PI
239CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
240LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
38c2028e 241endif
242ifeq "$(PLATFORM)" "libretro"
243OBJS += frontend/libretro.o
46aa5b98 244CFLAGS += -DFRONTEND_SUPPORTS_RGB565
ce0e7ac9 245
246ifeq ($(MMAP_WIN32),1)
247OBJS += libpcsxcore/memmap_win32.o
248endif
38c2028e 249endif
cc56203b 250
251ifeq "$(USE_PLUGIN_LIB)" "1"
38c2028e 252OBJS += frontend/plugin_lib.o
cc56203b 253OBJS += frontend/libpicofe/linux/plat.o
254OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
a4da039c 255frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
57467c77 256ifeq "$(HAVE_NEON_ASM)" "1"
cc56203b 257OBJS += frontend/libpicofe/arm/neon_scale2x.o
258OBJS += frontend/libpicofe/arm/neon_eagle2x.o
259frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
260frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
261endif
262endif
263ifeq "$(USE_FRONTEND)" "1"
264OBJS += frontend/menu.o
265OBJS += frontend/libpicofe/input.o
266frontend/menu.o: frontend/libpicofe/menu.c
38c2028e 267ifeq "$(HAVE_TSLIB)" "1"
268frontend/%.o: CFLAGS += -DHAVE_TSLIB
269OBJS += frontend/pl_gun_ts.o
270endif
271else
272CFLAGS += -DNO_FRONTEND
55b0eeea 273endif
a80ae4a0 274
cc56203b 275# misc
276OBJS += frontend/main.o frontend/plugin.o
0d87d062 277frontend/main.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
e0aec5ee 278
a1a232ad 279frontend/menu.o frontend/main.o: frontend/revision.h
280frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
3c70c47b 281
cc56203b 282frontend/libpicofe/%.c:
fa56d360 283 @echo "libpicofe module is missing, please run:"
284 @echo "git submodule init && git submodule update"
285 @exit 1
286
59774ed0 287libpcsxcore/gte_nf.o: libpcsxcore/gte.c
288 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
289
3c70c47b 290frontend/revision.h: FORCE
4527b1fd 291 @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
3c70c47b 292 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
293 @rm $@_
3c70c47b 294
90ca4913 295%.o: %.S
9aff1963 296 $(CC_AS) $(CFLAGS) -c $^ -o $@
80c2304e 297
e0aec5ee 298
38c2028e 299target_: $(TARGET)
300
80c2304e 301$(TARGET): $(OBJS)
07f64ac7 302 $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
80c2304e 303
dd4d5a35 304clean: $(PLAT_CLEAN) clean_plugins
a1a232ad 305 $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
0d464c77 306
4132e8ca 307ifneq ($(PLUGINS),)
dd4d5a35 308plugins_: $(PLUGINS)
309
ee78346e 310$(PLUGINS):
4cccc4d2 311 $(MAKE) -C $(dir $@)
f932e54b 312
ee78346e 313clean_plugins:
4cccc4d2 314 $(MAKE) -C plugins/gpulib/ clean
ee78346e 315 for dir in $(PLUGINS) ; do \
316 $(MAKE) -C $$(dirname $$dir) clean; done
dd4d5a35 317else
318plugins_:
319clean_plugins:
4132e8ca 320endif
80c2304e 321
fa56d360 322.PHONY: all clean target_ plugins_ clean_plugins FORCE
323
857275a9 324ifneq "$(PLATFORM)" "pandora"
325ifdef CPATH
326$(warning warning: CPATH is defined)
327endif
328endif
329
303ee308 330# ----------- release -----------
331
4527b1fd 332VER ?= $(shell git describe --always HEAD)
4132e8ca 333
dd4d5a35 334ifeq "$(PLATFORM)" "generic"
335OUT = pcsx_rearmed_$(VER)
336
337rel: pcsx $(PLUGINS) \
338 frontend/pandora/skin readme.txt COPYING
339 rm -rf $(OUT)
340 mkdir -p $(OUT)/plugins
341 mkdir -p $(OUT)/bios
342 cp -r $^ $(OUT)/
343 mv $(OUT)/*.so* $(OUT)/plugins/
344 zip -9 -r $(OUT).zip $(OUT)
345endif
346
4132e8ca 347ifeq "$(PLATFORM)" "pandora"
303ee308 348PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
349
8886a808 350rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
9e0630ab 351 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
352 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 353 rm -rf out
bbd837c6 354 mkdir -p out/plugins
303ee308 355 cp -r $^ out/
3938f69a 356 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
357 rm out/pcsx.pxml.templ
bbd837c6 358 mv out/*.so out/plugins/
9e0630ab 359 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
4132e8ca 360endif
361
362ifeq "$(PLATFORM)" "caanoo"
363PLAT_CLEAN = caanoo_clean
364
365caanoo_clean:
366 $(RM) frontend/320240/pollux_set
367
4132e8ca 368rel: pcsx $(PLUGINS) \
369 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
370 frontend/320240/pcsxb.png frontend/320240/skin \
371 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
372 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
373 frontend/320240/haptic_s.cfg \
374 readme.txt COPYING
375 rm -rf out
376 mkdir -p out/pcsx_rearmed/plugins
377 cp -r $^ out/pcsx_rearmed/
4132e8ca 378 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
379 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
380 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
381 mkdir out/pcsx_rearmed/lib/
382 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
383 mkdir out/pcsx_rearmed/bios/
384 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
385endif