forked from libretro/mupen64plus-libretro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
381 lines (334 loc) · 11.1 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
DEBUG=0
FORCE_GLES=0
FORCE_GLES3=0
LLE=1
DYNAFLAGS :=
INCFLAGS :=
COREFLAGS :=
CPUFLAGS :=
GLFLAGS :=
UNAME=$(shell uname -a)
# Dirs
ROOT_DIR := .
LIBRETRO_DIR := $(ROOT_DIR)/libretro
ifeq ($(platform),)
platform = unix
ifeq ($(UNAME),)
platform = win
else ifneq ($(findstring MINGW,$(UNAME)),)
platform = win
else ifneq ($(findstring Darwin,$(UNAME)),)
platform = osx
else ifneq ($(findstring win,$(UNAME)),)
platform = win
endif
else ifneq (,$(findstring armv,$(platform)))
override platform += unix
else ifneq (,$(findstring odroid,$(platform)))
override platform += unix
endif
# system platform
system_platform = unix
ifeq ($(shell uname -a),)
EXE_EXT = .exe
system_platform = win
else ifneq ($(findstring Darwin,$(shell uname -a)),)
system_platform = osx
arch = intel
ifeq ($(shell uname -p),powerpc)
arch = ppc
endif
else ifneq ($(findstring MINGW,$(shell uname -a)),)
system_platform = win
endif
# Cross compile ?
ifeq (,$(ARCH))
ARCH = $(shell uname -m)
endif
# Cross compile ?
ifeq (,$(ARCH))
ARCH = $(shell uname -m)
endif
# Target Dynarec
WITH_DYNAREC = $(ARCH)
PIC = 1
ifeq ($(ARCH), $(filter $(ARCH), i386 i686))
WITH_DYNAREC = x86
PIC = 0
else ifeq ($(ARCH), $(filter $(ARCH), arm))
WITH_DYNAREC = arm
endif
TARGET_NAME := mupen64plus
CC_AS ?= $(CC)
GIT_VERSION ?= " $(shell git rev-parse --short HEAD || echo unknown)"
ifneq ($(GIT_VERSION)," unknown")
COREFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
endif
# Linux
ifneq (,$(findstring unix,$(platform)))
TARGET := $(TARGET_NAME)_libretro.so
LDFLAGS += -shared -Wl,--version-script=$(LIBRETRO_DIR)/link.T -Wl,--no-undefined
ifeq ($(FORCE_GLES),1)
GLES = 1
GL_LIB := -lGLESv2
else ifeq ($(FORCE_GLES3),1)
GLES3 = 1
GL_LIB := -lGLESv2
else
GL_LIB := -lGL
endif
COREFLAGS += -DOS_LINUX
ASFLAGS = -f elf -d ELF_TYPE
# Raspberry Pi
else ifneq (,$(findstring rpi,$(platform)))
TARGET := $(TARGET_NAME)_libretro.so
LDFLAGS += -shared -Wl,--version-script=$(LIBRETRO_DIR)/link.T -Wl,--no-undefined
GLES = 1
ifneq (,$(findstring mesa,$(platform)))
GL_LIB := -lGLESv2
else
LLE = 0
CPUFLAGS += -DVC
GL_LIB := -L/opt/vc/lib -lbrcmGLESv2
INCFLAGS += -I/opt/vc/include -I/opt/vc/include/interface/vcos -I/opt/vc/include/interface/vcos/pthreads
endif
WITH_DYNAREC=arm
ifneq (,$(findstring rpi2,$(platform)))
CPUFLAGS += -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
HAVE_NEON = 1
else ifneq (,$(findstring rpi3,$(platform)))
CPUFLAGS += -march=armv8-a+crc -mtune=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard
HAVE_NEON = 1
endif
COREFLAGS += -DOS_LINUX
ASFLAGS = -f elf -d ELF_TYPE
# Nintendo Switch
else ifeq ($(platform), libnx)
include $(DEVKITPRO)/libnx/switch_rules
PIC = 1
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CPUOPTS := -g -march=armv8-a -mtune=cortex-a57 -mtp=soft -mcpu=cortex-a57+crc+fp+simd
PLATCFLAGS = -O3 -ffast-math -funsafe-math-optimizations -fPIE -I$(PORTLIBS)/include/ -I$(LIBNX)/include/ -ffunction-sections -fdata-sections -ftls-model=local-exec -specs=$(LIBNX)/switch.specs
PLATCFLAGS += $(INCLUDE) -D__SWITCH__=1 -DSWITCH -DHAVE_LIBNX -D_GLIBCXX_USE_C99_MATH_TR1 -D_LDBL_EQ_DBL -funroll-loops
SOURCES_C += $(CORE_DIR)/src/r4300/empty_dynarec.c
CXXFLAGS += -fno-rtti -std=gnu++11
COREFLAGS += -DOS_LINUX
GLES = 0
WITH_DYNAREC =
DYNAREC_USED = 0
STATIC_LINKING = 1
# ODROIDs
else ifneq (,$(findstring odroid,$(platform)))
TARGET := $(TARGET_NAME)_libretro.so
LDFLAGS += -shared -Wl,--version-script=$(LIBRETRO_DIR)/link.T -Wl,--no-undefined
BOARD := $(shell cat /proc/cpuinfo | grep -i odroid | awk '{print $$3}')
GLES = 1
GL_LIB := -lGLESv2
CPUFLAGS += -marm -mfloat-abi=hard -mfpu=neon
HAVE_NEON = 1
WITH_DYNAREC=arm
ifneq (,$(findstring ODROIDC,$(BOARD)))
# ODROID-C1
CPUFLAGS += -mcpu=cortex-a5
else ifneq (,$(findstring ODROID-XU3,$(BOARD)))
# ODROID-XU3 & -XU3 Lite
ifeq "$(shell expr `gcc -dumpversion` \>= 4.9)" "1"
CPUFLAGS += -march=armv7ve -mcpu=cortex-a15.cortex-a7
else
CPUFLAGS += -mcpu=cortex-a9
endif
else
# ODROID-U2, -U3, -X & -X2
CPUFLAGS += -mcpu=cortex-a9
endif
COREFLAGS += -DOS_LINUX
ASFLAGS = -f elf -d ELF_TYPE
# OS X
else ifneq (,$(findstring osx,$(platform)))
TARGET := $(TARGET_NAME)_libretro.dylib
LDFLAGS += -dynamiclib
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
LDFLAGS += -mmacosx-version-min=10.7
LDFLAGS += -stdlib=libc++
PLATCFLAGS += -D__MACOSX__ -DOSX -DOS_MAC_OS_X
GL_LIB := -framework OpenGL
# Target Dynarec
ifeq ($(ARCH), $(filter $(ARCH), ppc))
WITH_DYNAREC =
endif
COREFLAGS += -DOS_LINUX
ASFLAGS = -f elf -d ELF_TYPE
# iOS
else ifneq (,$(findstring ios,$(platform)))
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)
endif
TARGET := $(TARGET_NAME)_libretro_ios.dylib
DEFINES += -DIOS
GLES = 1
WITH_DYNAREC=arm
PLATCFLAGS += -DOS_MAC_OS_X
PLATCFLAGS += -DHAVE_POSIX_MEMALIGN -DNO_ASM
PLATCFLAGS += -DIOS -marm
CPUFLAGS += -DNO_ASM -DARM -D__arm__ -DARM_ASM -D__NEON_OPT
CPUFLAGS += -marm -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp
LDFLAGS += -dynamiclib
HAVE_NEON=1
GL_LIB := -framework OpenGLES
CC = clang -arch armv7 -isysroot $(IOSSDK)
CC_AS = perl ./tools/gas-preprocessor.pl $(CC)
CXX = clang++ -arch armv7 -isysroot $(IOSSDK)
ifeq ($(platform),ios9)
CC += -miphoneos-version-min=8.0
CC_AS += -miphoneos-version-min=8.0
CXX += -miphoneos-version-min=8.0
PLATCFLAGS += -miphoneos-version-min=8.0
else
CC += -miphoneos-version-min=5.0
CC_AS += -miphoneos-version-min=5.0
CXX += -miphoneos-version-min=5.0
PLATCFLAGS += -miphoneos-version-min=5.0
endif
COREFLAGS += -DOS_LINUX
ASFLAGS = -f elf -d ELF_TYPE
# Android
else ifneq (,$(findstring android,$(platform)))
LDFLAGS += -shared -Wl,--version-script=$(LIBRETRO_DIR)/link.T -Wl,--no-undefined -Wl,--warn-common -llog
INCFLAGS += -I$(ROOT_DIR)/GLideN64/src/GLideNHQ/inc
ifneq (,$(findstring x86,$(platform)))
CC = i686-linux-android-gcc
CXX = i686-linux-android-g++
WITH_DYNAREC = x86
LDFLAGS += -L$(ROOT_DIR)/custom/android/x86
else
CC = arm-linux-androideabi-gcc
CXX = arm-linux-androideabi-g++
WITH_DYNAREC = arm
HAVE_NEON = 1
CPUFLAGS += -march=armv7-a -mfloat-abi=softfp -mfpu=neon
LDFLAGS += -march=armv7-a -L$(ROOT_DIR)/custom/android/arm
endif
ifneq (,$(findstring gles3,$(platform)))
GL_LIB := -lGLESv3
GLES3 = 1
TARGET := $(TARGET_NAME)_gles3_libretro_android.so
else
GL_LIB := -lGLESv2
GLES = 1
TARGET := $(TARGET_NAME)_libretro_android.so
endif
CPUFLAGS += -DANDROID -DEGL_EGLEXT_PROTOTYPES
COREFLAGS += -DOS_LINUX
ASFLAGS = -f elf -d ELF_TYPE
# emscripten
else ifeq ($(platform), emscripten)
TARGET := $(TARGET_NAME)_libretro_emscripten.bc
GLES := 1
WITH_DYNAREC :=
CPUFLAGS += -DEMSCRIPTEN -DNO_ASM -s USE_ZLIB=1
PLATCFLAGS += \
-Dsinc_resampler=glupen_sinc_resampler \
-DCC_resampler=glupen_CC_resampler \
-Drglgen_symbol_map=glupen_rglgen_symbol_map \
-Drglgen_resolve_symbols_custom=glupen_rglgen_resolve_symbols_custom \
-Drglgen_resolve_symbols=glupen_rglgen_resolve_symbols \
-Dmemalign_alloc=glupen_memalign_alloc \
-Dmemalign_free=glupen_memalign_free \
-Dmemalign_alloc_aligned=glupen_memalign_alloc_aligned \
-Daudio_resampler_driver_find_handle=glupen_audio_resampler_driver_find_handle \
-Daudio_resampler_driver_find_ident=glupen_audio_resampler_driver_find_ident \
-Drarch_resampler_realloc=glupen_rarch_resampler_realloc \
-Dconvert_float_to_s16_C=glupen_convert_float_to_s16_C \
-Dconvert_float_to_s16_init_simd=glupen_convert_float_to_s16_init_simd \
-Dconvert_s16_to_float_C=glupen_convert_s16_to_float_C \
-Dconvert_s16_to_float_init_simd=glupen_convert_s16_to_float_init_simd \
-Dcpu_features_get_perf_counter=glupen_cpu_features_get_perf_counter \
-Dcpu_features_get_time_usec=glupen_cpu_features_get_time_usec \
-Dcpu_features_get_core_amount=glupen_cpu_features_get_core_amount \
-Dcpu_features_get=glupen_cpu_features_get \
-Dffs=glupen_ffs \
-Dstrlcpy_retro__=glupen_strlcpy_retro__ \
-Dstrlcat_retro__=glupen_strlcat_retro__
CC = emcc
CXX = em++
HAVE_NEON = 0
COREFLAGS += -DOS_LINUX
ASFLAGS = -f elf -d ELF_TYPE
# Windows
else
TARGET := $(TARGET_NAME)_libretro.dll
LDFLAGS += -shared -static-libgcc -static-libstdc++ -Wl,--version-script=$(LIBRETRO_DIR)/link.T -lwinmm -lgdi32
GL_LIB := -lopengl32
ifneq (,$(findstring win32,$(platform)))
CC = i686-w64-mingw32-gcc
CXX = i686-w64-mingw32-g++
WITH_DYNAREC = x86
else ifneq (,$(findstring win64,$(platform)))
CC = x86_64-w64-mingw32-gcc
CXX = x86_64-w64-mingw32-g++
WITH_DYNAREC = x86_64
endif
COREFLAGS += -DOS_WINDOWS -DMINGW
ASFLAGS = -f win32
endif
ifeq ($(STATIC_LINKING), 1)
ifneq (,$(findstring win,$(platform)))
TARGET := $(TARGET:.dll=.lib)
else ifneq ($(platform), $(filter $(platform), osx ios))
TARGET := $(TARGET:.dylib=.a)
else
TARGET := $(TARGET:.so=.a)
endif
endif
include Makefile.common
ifeq ($(HAVE_NEON), 1)
COREFLAGS += -DHAVE_NEON -D__ARM_NEON__ -D__NEON_OPT -ftree-vectorize -mvectorize-with-neon-quad -ftree-vectorizer-verbose=2 -funsafe-math-optimizations -fno-finite-math-only
endif
COREFLAGS += -D__LIBRETRO__ -DUSE_FILE32API -DM64P_PLUGIN_API -DM64P_CORE_PROTOTYPES -D_ENDUSER_RELEASE -DSINC_LOWER_QUALITY -DTXFILTER_LIB -D__VEC4_OPT -DMUPENPLUSAPI
ifeq ($(DEBUG), 1)
CPUOPTS += -O0 -g
CPUOPTS += -DOPENGL_DEBUG
else
CPUOPTS += -DNDEBUG -fsigned-char -ffast-math -fno-strict-aliasing -fomit-frame-pointer -fvisibility=hidden
ifneq ($(platform), libnx)
CPUOPTS := -O2 $(CPUOPTS)
endif
CXXFLAGS += -fvisibility-inlines-hidden
endif
ifneq ($(platform), libnx)
CXXFLAGS += -std=c++11
endif
ifeq ($(PIC), 1)
fpic = -fPIC
else
fpic = -fno-PIC
endif
OBJECTS += $(SOURCES_CXX:.cpp=.o) $(SOURCES_C:.c=.o) $(SOURCES_ASM:.S=.o) $(SOURCES_NASM:.asm=.o)
CXXFLAGS += $(CPUOPTS) $(COREFLAGS) $(INCFLAGS) $(PLATCFLAGS) $(fpic) $(CPUFLAGS) $(GLFLAGS) $(DYNAFLAGS)
CFLAGS += $(CPUOPTS) $(COREFLAGS) $(INCFLAGS) $(PLATCFLAGS) $(fpic) $(CPUFLAGS) $(GLFLAGS) $(DYNAFLAGS)
ifeq (,$(findstring android,$(platform)))
LDFLAGS += -lpthread
endif
LDFLAGS += $(fpic) -O2 -lz -lpng
all: $(TARGET)
$(TARGET): $(OBJECTS)
ifeq ($(STATIC_LINKING), 1)
$(AR) rcs $@ $(OBJECTS)
else
$(CXX) -o $@ $(OBJECTS) $(LDFLAGS) $(GL_LIB)
endif
%.o: %.asm
nasm $(ASFLAGS) $< -o $@
%.o: %.S
$(CC_AS) $(CFLAGS) -c $< -o $@
%.o: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
%.o: %.cpp
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
clean:
find -name "*.o" -type f -delete
find -name "*.d" -type f -delete
rm -f $(TARGET)
.PHONY: clean
-include $(OBJECTS:.o=.d)