forked from libretro/flycast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
760 lines (652 loc) · 18.6 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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
DEBUG := 0
NO_REND := 0
HAVE_GL := 1
HAVE_GL2 := 0
HAVE_OIT := 0
HAVE_CORE := 0
NO_THREADS := 0
NO_EXCEPTIONS := 0
NO_NVMEM := 0
NO_VERIFY := 1
HAVE_LTCG := 1
HAVE_GENERIC_JIT := 1
HAVE_GL3 := 0
FORCE_GLES := 0
STATIC_LINKING:= 0
HAVE_TEXUPSCALE := 1
HAVE_OPENMP := 1
HAVE_CHD := 1
TARGET_NAME := reicast
CXX = ${CC_PREFIX}g++
CC = ${CC_PREFIX}gcc
CC_AS = ${CC_PREFIX}as
MFLAGS :=
ASFLAGS :=
LDFLAGS :=
LDFLAGS_END :=
INCFLAGS :=
LIBS :=
CFLAGS :=
CXXFLAGS :=
GIT_VERSION := " $(shell git rev-parse --short HEAD || echo unknown)"
ifneq ($(GIT_VERSION)," unknown")
CXXFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
endif
UNAME=$(shell uname -a)
LIBRETRO_DIR := .
# Cross compile ?
ifeq (,$(ARCH))
ARCH = $(shell uname -m)
endif
# Target Dynarec
WITH_DYNAREC = $(ARCH)
ifeq ($(ARCH), $(filter $(ARCH), i386 i686))
WITH_DYNAREC = x86
endif
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
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
CORE_DIR := .
DYNAREC_USED = 0
CORE_DEFINES := -D__LIBRETRO__
ifeq ($(NO_VERIFY),1)
CORE_DEFINES += -DNO_VERIFY
endif
DC_PLATFORM=dreamcast
HOST_CPU_X86=0x20000001
HOST_CPU_ARM=0x20000002
HOST_CPU_MIPS=0x20000003
HOST_CPU_X64=0x20000004
ifeq ($(STATIC_LINKING),1)
EXT=a
endif
# Unix
ifneq (,$(findstring unix,$(platform)))
EXT ?= so
TARGET := $(TARGET_NAME)_libretro.$(EXT)
SHARED := -shared -Wl,--version-script=link.T
LDFLAGS += -Wl,--no-undefined
ifneq (,$(findstring Haiku,$(shell uname -s)))
LIBS += -lroot -lnetwork
else
LIBS += -lrt
endif
ifneq ($(HAVE_GL2), 1)
ifneq ($(HAVE_OIT), 1)
HAVE_GL3 = 1
endif
endif
fpic = -fPIC
ifeq ($(WITH_DYNAREC), $(filter $(WITH_DYNAREC), x86_64 x64))
CFLAGS += -DTARGET_LINUX_x64 -D TARGET_NO_AREC
SINGLE_PREC_FLAGS=1
CXXFLAGS += -fexceptions
HAVE_GENERIC_JIT = 0
else ifeq ($(WITH_DYNAREC), x86)
CFLAGS += -m32 -D TARGET_LINUX_x86
SINGLE_PREC_FLAGS=1
CXXFLAGS += -fno-exceptions
MFLAGS += -m32
ASFLAGS += --32
LDFLAGS += -m32
HAVE_GENERIC_JIT = 0
endif
PLATFORM_EXT := unix
# Raspberry Pi
else ifneq (,$(findstring rpi,$(platform)))
EXT ?= so
TARGET := $(TARGET_NAME)_libretro.$(EXT)
SHARED := -shared -Wl,--version-script=link.T
fpic = -fPIC
LIBS += -lrt
ARM_FLOAT_ABI_HARD = 1
SINGLE_PREC_FLAGS = 1
ifeq (,$(findstring mesa,$(platform)))
GLES = 1
GL_LIB := -L/opt/vc/lib -lbrcmGLESv2
INCFLAGS += -I/opt/vc/include
CFLAGS += -DTARGET_NO_STENCIL
else
FORCE_GLES = 1
endif
ifneq (,$(findstring rpi2,$(platform)))
CFLAGS += -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
CXXFLAGS += -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
else ifneq (,$(findstring rpi3,$(platform)))
CFLAGS += -march=armv8-a+crc -mtune=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard
CXXFLAGS += -march=armv8-a+crc -mtune=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard
endif
PLATFORM_EXT := unix
WITH_DYNAREC=arm
# Classic Platforms ####################
# Platform affix = classic_<ISA>_<µARCH>
# Help at https://modmyclassic.com/comp
# (armv7 a7, hard point, neon based) ###
# NESC, SNESC, C64 mini
else ifeq ($(platform), classic_armv7_a7)
EXT ?= so
TARGET := $(TARGET_NAME)_libretro.$(EXT)
SHARED := -shared -Wl,--version-script=link.T
fpic = -fPIC
LIBS += -lrt
ARM_FLOAT_ABI_HARD = 1
FORCE_GLES = 1
SINGLE_PREC_FLAGS = 1
HAVE_LTCG = 0
HAVE_OPENMP = 0
CFLAGS += -Ofast \
-flto=4 -fwhole-program -fuse-linker-plugin \
-fdata-sections -ffunction-sections -Wl,--gc-sections \
-fno-stack-protector -fno-ident -fomit-frame-pointer \
-falign-functions=1 -falign-jumps=1 -falign-loops=1 \
-fno-unwind-tables -fno-asynchronous-unwind-tables -fno-unroll-loops \
-fmerge-all-constants -fno-math-errno \
-marm -mtune=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
CXXFLAGS += $(CFLAGS)
ASFLAGS += $(CFLAGS)
LDFLAGS += -marm -mtune=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
ifeq ($(shell echo `$(CC) -dumpversion` "< 4.9" | bc -l), 1)
CFLAGS += -march=armv7-a
LDFLAGS += -march=armv7-a
else
CFLAGS += -march=armv7ve
LDFLAGS += -march=armv7ve
# If gcc is 5.0 or later
ifeq ($(shell echo `$(CC) -dumpversion` ">= 5" | bc -l), 1)
LDFLAGS += -static-libgcc -static-libstdc++
endif
endif
PLATFORM_EXT := unix
WITH_DYNAREC = arm
#######################################
# RockPro64
else ifeq ($(platform), rockpro64)
EXT ?= so
TARGET := $(TARGET_NAME)_libretro.$(EXT)
SHARED := -shared -Wl,--version-script=link.T
fpic = -fPIC
LIBS += -lrt
ARM_FLOAT_ABI_HARD = 1
FORCE_GLES = 1
SINGLE_PREC_FLAGS = 1
CPUFLAGS += -DNO_ASM -DARM_ASM -frename-registers -ftree-vectorize
CFLAGS += -marm -mfloat-abi=hard -mcpu=cortex-a72 -mtune=cortex-a72.cortex-a53 -mfpu=neon-fp-armv8 -mvectorize-with-neon-quad $(CPUFLAGS)
CXXFLAGS += -marm -mfloat-abi=hard -mcpu=cortex-a72 -mtune=cortex-a72.cortex-a53 -mfpu=neon-fp-armv8 -mvectorize-with-neon-quad $(CPUFLAGS)
ASFLAGS += $(CFLAGS) -c -frename-registers -fno-strict-aliasing -ffast-math -ftree-vectorize
PLATFORM_EXT := unix
WITH_DYNAREC=arm
# ODROIDs
else ifneq (,$(findstring odroid,$(platform)))
EXT ?= so
TARGET := $(TARGET_NAME)_libretro.$(EXT)
BOARD := $(shell cat /proc/cpuinfo | grep -i odroid | awk '{print $$3}')
SHARED := -shared -Wl,--version-script=link.T
fpic = -fPIC
LIBS += -lrt
ARM_FLOAT_ABI_HARD = 1
FORCE_GLES = 1
SINGLE_PREC_FLAGS = 1
CPUFLAGS += -DNO_ASM -DARM_ASM -frename-registers -ftree-vectorize
CFLAGS += -marm -mfloat-abi=hard $(CPUFLAGS)
CXXFLAGS += -marm -mfloat-abi=hard $(CPUFLAGS)
ifneq (,$(findstring ODROIDC,$(BOARD)))
# ODROID-C1
CFLAGS += -mcpu=cortex-a5
CXXFLAGS += -mcpu=cortex-a5
else ifneq (,$(findstring ODROID-XU3,$(BOARD)))
# ODROID-XU3 & -XU3 Lite
ifeq "$(shell expr `gcc -dumpversion` \>= 4.9)" "1"
CFLAGS += -mcpu=cortex-a15 -mtune=cortex-a15.cortex-a7 -mfpu=neon-vfpv4 -mvectorize-with-neon-quad
CXXFLAGS += -mcpu=cortex-a15 -mtune=cortex-a15.cortex-a7 -mfpu=neon-vfpv4 -mvectorize-with-neon-quad
else
CFLAGS += -mcpu=cortex-a9 -mfpu=neon
CXXFLAGS += -mcpu=cortex-a9 -mfpu=neon
endif
else ifneq (,$(findstring ODROID-XU4,$(BOARD)))
# ODROID-XU4 on newer kernels now identify as ODROID-XU4
ifeq "$(shell expr `gcc -dumpversion` \>= 4.9)" "1"
CFLAGS += -mcpu=cortex-a15 -mtune=cortex-a15.cortex-a7 -mfpu=neon-vfpv4 -mvectorize-with-neon-quad
CXXFLAGS += -mcpu=cortex-a15 -mtune=cortex-a15.cortex-a7 -mfpu=neon-vfpv4 -mvectorize-with-neon-quad
else
CFLAGS += -mcpu=cortex-a9 -mfpu=neon
CXXFLAGS += -mcpu=cortex-a9 -mfpu=neon
endif
else
# ODROID-U2, -U3, -X & -X2
CFLAGS += -mcpu=cortex-a9 -mfpu=neon
CXXFLAGS += -mcpu=cortex-a9 -mfpu=neon
endif
#Since we are using GCC, we use the CFLAGS and we add some extra parameters to be able to compile (taken from reicast/reicast-emulator)
ASFLAGS += $(CFLAGS) -c -frename-registers -fno-strict-aliasing -ffast-math -ftree-vectorize
PLATFORM_EXT := unix
WITH_DYNAREC=arm
# i.MX6
else ifneq (,$(findstring imx6,$(platform)))
EXT ?= so
TARGET := $(TARGET_NAME)_libretro.$(EXT)
SHARED := -shared -Wl,--version-script=link.T
fpic = -fPIC
FORCE_GLES = 1
LIBS += -lrt
CPUFLAGS += -DNO_ASM
PLATFORM_EXT := unix
WITH_DYNAREC=arm
# OS X
else ifneq (,$(findstring osx,$(platform)))
EXT ?= dylib
TARGET := $(TARGET_NAME)_libretro.$(EXT)
SHARED += -dynamiclib
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
fpic += -mmacosx-version-min=10.7
LDFLAGS += -stdlib=libc++
fpic = -fPIC
CFLAGS += -D TARGET_NO_AREC
SINGLE_PREC_FLAGS=1
PLATCFLAGS += -D__MACOSX__ -DOSX
GL_LIB := -framework OpenGL
PLATFORM_EXT := unix
# Target Dynarec
ifeq ($(ARCH), $(filter $(ARCH), ppc))
WITH_DYNAREC =
else
HAVE_GENERIC_JIT = 0
endif
HAVE_OPENMP=0
# iOS
else ifneq (,$(findstring ios,$(platform)))
EXT ?= dylib
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)
endif
TARGET := $(TARGET_NAME)_libretro_ios.$(EXT)
DEFINES += -DIOS
GLES = 1
WITH_DYNAREC=
PLATFORM_EXT := unix
#HOST_CPU_FLAGS = -DHOST_CPU=$(HOST_CPU_ARM)
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
SHARED += -dynamiclib
fpic = -fPIC
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
HAVE_OPENMP=0
# Theos iOS
else ifneq (,$(findstring theos_ios,$(platform)))
DEPLOYMENT_IOSVERSION = 5.0
TARGET = iphone:latest:$(DEPLOYMENT_IOSVERSION)
ARCHS = armv7
TARGET_IPHONEOS_DEPLOYMENT_VERSION=$(DEPLOYMENT_IOSVERSION)
THEOS_BUILD_DIR := objs
include $(THEOS)/makefiles/common.mk
LIBRARY_NAME = $(TARGET_NAME)_libretro_ios
DEFINES += -DIOS
FORCE_GLES = 1
WITH_DYNAREC=arm
PLATCFLAGS += -DHAVE_POSIX_MEMALIGN -DNO_ASM
PLATCFLAGS += -DIOS -marm
CPUFLAGS += -DNO_ASM -DARM -D__arm__ -DARM_ASM -D__NEON_OPT -DNOSSE
# Android
else ifneq (,$(findstring android,$(platform)))
fpic = -fPIC
EXT ?= so
TARGET := $(TARGET_NAME)_libretro_android.$(EXT)
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined -Wl,--warn-common
CC = arm-linux-androideabi-gcc
CXX = arm-linux-androideabi-g++
WITH_DYNAREC=arm
FORCE_GLES = 1
PLATCFLAGS += -DANDROID
CPUCFLAGS += -DNO_ASM
CPUFLAGS += -marm -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -D__arm__ -DARM_ASM -D__NEON_OPT
CFLAGS += -DANDROID
PLATFORM_EXT := unix
# QNX
else ifeq ($(platform), qnx)
fpic = -fPIC
EXT ?= so
TARGET := $(TARGET_NAME)_libretro_$(platform).$(EXT)
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined -Wl,--warn-common
CC = qcc -Vgcc_ntoarmv7le
CC_AS = qcc -Vgcc_ntoarmv7le
CXX = QCC -Vgcc_ntoarmv7le
AR = QCC -Vgcc_ntoarmv7le
WITH_DYNAREC=arm
FORCE_GLES = 1
PLATCFLAGS += -DNO_ASM -D__BLACKBERRY_QNX__
CPUFLAGS += -marm -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=softfp -D__arm__ -DARM_ASM -D__NEON_OPT
CFLAGS += -D__QNX__
PLATFORM_EXT := unix
# ARM
else ifneq (,$(findstring armv,$(platform)))
EXT ?= so
TARGET := $(TARGET_NAME)_libretro.$(EXT)
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
fpic := -fPIC
CPUFLAGS += -DNO_ASM -DARM -D__arm__ -DARM_ASM -DNOSSE
WITH_DYNAREC=arm
PLATCFLAGS += -DARM
ifneq (,$(findstring gles,$(platform)))
FORCE_GLES = 1
endif
ifneq (,$(findstring cortexa5,$(platform)))
CPUFLAGS += -marm -mcpu=cortex-a5
else ifneq (,$(findstring cortexa8,$(platform)))
CPUFLAGS += -marm -mcpu=cortex-a8
else ifneq (,$(findstring cortexa9,$(platform)))
CPUFLAGS += -marm -mcpu=cortex-a9
else ifneq (,$(findstring cortexa15a7,$(platform)))
CPUFLAGS += -marm -mcpu=cortex-a15.cortex-a7
else
CPUFLAGS += -marm
endif
ifneq (,$(findstring neon,$(platform)))
CPUFLAGS += -D__NEON_OPT -mfpu=neon
endif
ifneq (,$(findstring softfloat,$(platform)))
CPUFLAGS += -mfloat-abi=softfp
else ifneq (,$(findstring hardfloat,$(platform)))
CPUFLAGS += -mfloat-abi=hard
endif
# emscripten
else ifeq ($(platform), emscripten)
EXT ?= bc
TARGET := $(TARGET_NAME)_libretro_$(platform).$(EXT)
FORCE_GLES := 1
WITH_DYNAREC=
CPUFLAGS += -Dasm=asmerror -D__asm__=asmerror -DNO_ASM -DNOSSE
SINGLE_THREAD := 1
PLATCFLAGS += -Drglgen_resolve_symbols_custom=reicast_rglgen_resolve_symbols_custom \
-Drglgen_resolve_symbols=reicast_rglgen_resolve_symbols
NO_REC=0
PLATFORM_EXT := unix
#HAVE_SHARED_CONTEXT := 1
# Windows
else
ifneq ($(HAVE_GL2), 1)
ifneq ($(HAVE_OIT), 1)
HAVE_GL3 = 1
endif
endif
EXT ?= dll
HAVE_GENERIC_JIT = 0
TARGET := $(TARGET_NAME)_libretro.$(EXT)
LDFLAGS += -shared -static-libgcc -static-libstdc++ -Wl,--version-script=link.T -lwinmm -lgdi32
GL_LIB := -lopengl32
PLATFORM_EXT := win32
SINGLE_PREC_FLAGS=1
CC = gcc
CXX = g++
ifeq ($(WITH_DYNAREC), x86)
LDFLAGS += -m32
CFLAGS += -m32
else
CFLAGS += -D TARGET_NO_AREC
endif
endif
ifeq ($(STATIC_LINKING),1)
fpic=
SHARED=
endif
ifeq ($(SINGLE_PREC_FLAGS),1)
CORE_DEFINES += -fno-builtin-sqrtf
endif
ifeq ($(ARMV7A_FLAGS),1)
MFLAGS += -marm -march=armv7-a
ASFLAGS += -march=armv7-a
endif
ifeq ($(ARMV7_CORTEX_A9_FLAGS),1)
MFLAGS += -mcpu=cortex-a9
endif
ifeq ($(ARM_FLOAT_ABI_HARD),1)
MFLAGS += -mfloat-abi=hard
ASFLAGS += -mfloat-abi=hard
CFLAGS += -DARM_HARDFP
endif
ifeq ($(WITH_DYNAREC), $(filter $(WITH_DYNAREC), x86_64 x64))
HOST_CPU_FLAGS = -DHOST_CPU=$(HOST_CPU_X64)
endif
ifeq ($(WITH_DYNAREC), x86)
HOST_CPU_FLAGS = -DHOST_CPU=$(HOST_CPU_X86)
endif
ifeq ($(WITH_DYNAREC), arm)
HOST_CPU_FLAGS = -DHOST_CPU=$(HOST_CPU_ARM)
endif
ifeq ($(WITH_DYNAREC), mips)
HOST_CPU_FLAGS = -DHOST_CPU=$(HOST_CPU_MIPS)
endif
ifeq ($(FORCE_GLES),1)
GLES = 1
GL_LIB := -lGLESv2
else ifneq (,$(findstring gles,$(platform)))
GLES = 1
GL_LIB := -lGLESv2
else ifeq ($(platform), win)
GL_LIB := -lopengl32
else ifneq (,$(findstring osx,$(platform)))
GL_LIB := -framework OpenGL
else ifneq (,$(findstring ios,$(platform)))
GL_LIB := -framework OpenGLES
else ifeq ($(GL_LIB),)
GL_LIB := -lGL
endif
CFLAGS += $(HOST_CPU_FLAGS)
CXXFLAGS += $(HOST_CPU_FLAGS)
RZDCY_CFLAGS += $(HOST_CPU_FLAGS)
include Makefile.common
ifeq ($(WITH_DYNAREC), x86)
HAVE_LTCG = 0
endif
ifeq ($(DEBUG),1)
OPTFLAGS := -O0
LDFLAGS += -g
CFLAGS += -g
else
ifneq (,$(findstring msvc,$(platform)))
OPTFLAGS := -O2
else ifneq ($(platform), classic_armv7_a7)
OPTFLAGS := -O3
endif
CORE_DEFINES += -DNDEBUG
LDFLAGS += -DNDEBUG
ifeq ($(HAVE_LTCG), 1)
CORE_DEFINES += -flto
endif
CORE_DEFINES += -DRELEASE
endif
ifeq ($(HAVE_GL3), 1)
HAVE_CORE = 1
CORE_DEFINES += -DHAVE_GL3
endif
RZDCY_CFLAGS += $(CFLAGS) -c $(OPTFLAGS) -frename-registers -ffast-math -ftree-vectorize -fomit-frame-pointer
ifeq ($(WITH_DYNAREC), arm)
ifneq (,$(findstring odroid,$(platform)))
BOARD := $(shell cat /proc/cpuinfo | grep -i odroid | awk '{print $$3}')
ifneq (,$(findstring ODROIDC,$(BOARD)))
# ODROID-C1
RZDCY_CFLAGS += -marm -mcpu=cortex-a5
else ifneq (,$(findstring ODROID-XU3,$(BOARD)))
# ODROID-XU3 & -XU3 Lite
ifeq "$(shell expr `gcc -dumpversion` \>= 4.9)" "1"
RZDCY_CFLAGS += -marm -mcpu=cortex-a15 -mtune=cortex-a15.cortex-a7 -mfpu=neon-vfpv4
else
RZDCY_CFLAGS += -marm -mcpu=cortex-a9 -mfpu=neon
endif
else ifneq (,$(findstring ODROID-XU4,$(BOARD)))
# ODROID-XU4 on newer kernels now identify as ODROID-XU4
ifeq "$(shell expr `gcc -dumpversion` \>= 4.9)" "1"
RZDCY_CFLAGS += -marm -mcpu=cortex-a15 -mtune=cortex-a15.cortex-a7 -mfpu=neon-vfpv4
else
RZDCY_CFLAGS += -marm -mcpu=cortex-a9 -mfpu=neon
endif
else
# ODROID-U2, -U3, -X & -X2
RZDCY_CFLAGS += -marm -mcpu=cortex-a9 -mfpu=neon
endif
else
RZDCY_CFLAGS += -march=armv7-a -mcpu=cortex-a9 -mfpu=vfpv3-d16
endif
RZDCY_CFLAGS += -DTARGET_LINUX_ARMELv7
else
RZDCY_CFLAGS += -DTARGET_LINUX_x86
endif
ifeq ($(NO_THREADS),1)
CORE_DEFINES += -DTARGET_NO_THREADS
else
NEED_PTHREAD=1
endif
ifeq ($(NO_REC),1)
CORE_DEFINES += -DTARGET_NO_REC
endif
ifeq ($(NO_REND),1)
CORE_DEFINES += -DNO_REND=1
endif
ifeq ($(NO_EXCEPTIONS),1)
CORE_DEFINES += -DTARGET_NO_EXCEPTIONS=1
endif
ifeq ($(NO_NVMEM),1)
CORE_DEFINES += -DTARGET_NO_NVMEM=1
endif
RZDCY_CXXFLAGS := $(RZDCY_CFLAGS) -fexceptions -fno-rtti -std=gnu++11
ifeq (,$(findstring msvc,$(platform)))
CORE_DEFINES += -funroll-loops
endif
ifeq ($(HAVE_OIT), 1)
HAVE_CORE = 1
CORE_DEFINES += -DHAVE_OIT -DHAVE_GL4
endif
ifeq ($(HAVE_CORE), 1)
CORE_DEFINES += -DCORE
endif
ifeq ($(HAVE_TEXUPSCALE), 1)
CORE_DEFINES += -DHAVE_TEXUPSCALE
ifeq ($(HAVE_OPENMP), 1)
CFLAGS += -fopenmp
CXXFLAGS += -fopenmp
LDFLAGS += -fopenmp
else
CFLAGS += -DTARGET_NO_OPENMP
CXXFLAGS += -DTARGET_NO_OPENMP
endif
ifeq ($(platform), win)
LDFLAGS_END += -Wl,-Bstatic -lgmp -Wl,-Bstatic -lgomp -lwsock32
endif
NEED_CXX11=1
NEED_PTHREAD=1
endif
ifeq ($(NEED_PTHREAD), 1)
LIBS += -lpthread
endif
ifeq ($(HAVE_GL), 1)
ifeq ($(GLES),1)
CORE_DEFINES += -DHAVE_OPENGLES -DHAVE_OPENGLES2
else
CORE_DEFINES += -DHAVE_OPENGL
endif
endif
ifeq ($(DEBUG), 1)
HAVE_GENERIC_JIT = 0
endif
ifeq ($(HAVE_GENERIC_JIT), 1)
CORE_DEFINES += -DTARGET_NO_JIT
NEED_CXX11=1
endif
ifeq ($(NEED_CXX11), 1)
CXXFLAGS += -std=c++11
endif
ifeq ($(HAVE_CHD),1)
CORE_DEFINES += -DFLAC__HAS_OGG=0 -FLAC__NO_DLL -DHAVE_LROUND -DHAVE_STDINT_H -DHAVE_STDLIB_H -DHAVE_SYS_PARAM_H -D_7ZIP_ST -DUSE_FLAC -DUSE_LZMA
endif
RZDCY_CFLAGS += $(CORE_DEFINES)
RZDCY_CXXFLAGS += $(CORE_DEFINES)
CFLAGS += $(CORE_DEFINES)
CXXFLAGS += $(CORE_DEFINES)
CFLAGS += $(OPTFLAGS) -c
CFLAGS += -fno-strict-aliasing -ffast-math
CXXFLAGS += -fno-rtti -fpermissive -fno-operator-names
LIBS += -lm
PREFIX ?= /usr/local
ifneq (,$(findstring arm, $(ARCH)))
CC_AS = ${CC_PREFIX}gcc #The ngen_arm.S must be compiled with gcc, not as
ASFLAGS += $(CFLAGS)
endif
ifeq ($(PGO_MAKE),1)
CFLAGS += -fprofile-generate -pg
LDFLAGS += -fprofile-generate
else
CFLAGS += -fomit-frame-pointer
endif
ifeq ($(PGO_USE),1)
CFLAGS += -fprofile-use
endif
ifeq ($(LTO_TEST),1)
CFLAGS += -flto -fwhole-program
LDFLAGS +=-flto -fwhole-program
endif
CFLAGS += $(fpic)
CXXFLAGS += $(fpic)
LDFLAGS += $(fpic)
OBJECTS := $(SOURCES_CXX:.cpp=.o) $(SOURCES_C:.c=.o) $(SOURCES_ASM:.S=.o)
ifneq (,$(findstring msvc,$(platform)))
OBJOUT = -Fo
LINKOUT = -out:
LD = link.exe
else
LD = $(CXX)
endif
all: $(TARGET)
$(TARGET): $(OBJECTS)
@echo "** BUILDING $(TARGET) FOR PLATFORM $(platform) **"
ifeq ($(STATIC_LINKING), 1)
$(AR) rcs $@ $(OBJECTS)
else
$(LD) $(MFLAGS) $(fpic) $(SHARED) $(LDFLAGS) $(OBJECTS) $(LDFLAGS_END) $(GL_LIB) $(LIBS) -o $@
endif
@echo "** BUILD SUCCESSFUL! GG NO RE **"
%.o: %.cpp
$(CXX) $(INCFLAGS) $(CFLAGS) $(MFLAGS) $(CXXFLAGS) $< -o $@
%.o: %.c
$(CC) $(INCFLAGS) $(CFLAGS) $(MFLAGS) $< -o $@
%.o: %.S
$(CC_AS) $(ASFLAGS) $(INCFLAGS) $< -o $@
clean:
rm -f $(OBJECTS) $(TARGET)