-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathMakefile
More file actions
824 lines (731 loc) · 28.7 KB
/
Copy pathMakefile
File metadata and controls
824 lines (731 loc) · 28.7 KB
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
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
DEBUG = 0
FRONTEND_SUPPORTS_RGB565 = 1
HAVE_OPENGL = 1
GLES = 0
GLES3 = 0 # HW renderer now supported on GLES3
HAVE_VULKAN = 1
HAVE_CHD = 1
HAVE_CDROM = 0
LINK_STATIC_LIBCPLUSPLUS = 1
THREADED_RECOMPILER = 1
CORE_DIR := .
HAVE_GRIFFIN = 0
SPACE :=
SPACE := $(SPACE) $(SPACE)
BACKSLASH :=
BACKSLASH := \$(BACKSLASH)
filter_out1 = $(filter-out $(firstword $1),$1)
filter_out2 = $(call filter_out1,$(call filter_out1,$1))
GIT_VERSION ?= " $(shell git rev-parse --short HEAD || echo unknown)"
ifneq ($(GIT_VERSION)," unknown")
FLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
endif
ifeq ($(platform),)
platform = unix
ifeq ($(shell uname -s),)
platform = win
else ifneq ($(findstring Darwin,$(shell uname -s)),)
platform = osx
arch = intel
ifeq ($(shell uname -p),powerpc)
arch = ppc
endif
else ifneq ($(findstring MINGW,$(shell uname -s)),)
platform = win
endif
else ifneq (,$(findstring armv,$(platform)))
override platform += unix
endif
ifneq ($(platform), osx)
ifeq ($(findstring Haiku,$(shell uname -s)),)
PTHREAD_FLAGS = -lpthread
endif
endif
NEED_CD = 1
NEED_TREMOR = 1
NEED_BPP = 32
NEED_DEINTERLACER = 1
NEED_THREADING = 1
SET_HAVE_HW = 0
CORE_DEFINE :=
TARGET_NAME := pcsx2
ifeq ($(HAVE_HW), 1)
HAVE_VULKAN = 1
HAVE_OPENGL = 1
SET_HAVE_HW = 1
endif
ifeq ($(HAVE_VULKAN), 1)
SET_HAVE_HW = 1
endif
ifeq ($(HAVE_OPENGL), 1)
SET_HAVE_HW = 1
endif
ifeq ($(SET_HAVE_HW), 1)
FLAGS += -DHAVE_HW
endif
# Unix
ifneq (,$(findstring unix,$(platform)))
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
ifneq ($(findstring SunOS,$(shell uname -a)),)
GREP = ggrep
SHARED := -shared -z defs
else
GREP = grep
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
endif
ifeq ($(LINK_STATIC_LIBCPLUSPLUS),1)
LDFLAGS += -static-libgcc -static-libstdc++
endif
ifneq ($(shell uname -p | $(GREP) -E '((i.|x)86|amd64)'),)
IS_X86 = 1
endif
ifneq (,$(findstring Haiku,$(shell uname -s)))
LDFLAGS += $(PTHREAD_FLAGS) -lroot
else
LDFLAGS += $(PTHREAD_FLAGS) -ldl
endif
FLAGS +=
ifeq ($(HAVE_OPENGL),1)
ifneq (,$(findstring gles,$(platform)))
GLES = 1
GL_LIB := -lGLESv2
else
GL_LIB := -lGL
endif
endif
ifneq ($(findstring Linux,$(shell uname -s)),)
HAVE_CDROM = 1
endif
# OS X
else ifeq ($(platform), osx)
TARGET := $(TARGET_NAME)_libretro.dylib
fpic := -fPIC
SHARED := -dynamiclib -Wl,-exported_symbols_list,libretro.osx.def
LDFLAGS += $(PTHREAD_FLAGS)
FLAGS += $(PTHREAD_FLAGS)
ifeq ($(arch),ppc)
ENDIANNESS_DEFINES := -DMSB_FIRST
OLD_GCC := 1
endif
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
ifeq ($(OSX_LT_MAVERICKS),"YES")
fpic += -mmacosx-version-min=10.5
endif
ifeq ($(HAVE_OPENGL),1)
GL_LIB := -framework OpenGL
endif
ifeq ($(CROSS_COMPILE),1)
TARGET_RULE = -target $(LIBRETRO_APPLE_PLATFORM) -isysroot $(LIBRETRO_APPLE_ISYSROOT)
CFLAGS += $(TARGET_RULE)
CPPFLAGS += $(TARGET_RULE)
CXXFLAGS += $(TARGET_RULE)
LDFLAGS += $(TARGET_RULE)
endif
# iOS
else ifneq (,$(findstring ios,$(platform)))
ifeq ($(platform),$(filter $(platform),ios-arm64))
iarch := arm64
else
iarch := armv7
endif
TARGET := $(TARGET_NAME)_libretro_ios.dylib
fpic := -fPIC
SHARED := -dynamiclib
LDFLAGS += $(PTHREAD_FLAGS)
FLAGS += $(PTHREAD_FLAGS)
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcrun -sdk iphoneos -show-sdk-path)
endif
ifeq ($(HAVE_OPENGL),1)
GL_LIB := -framework OpenGLES
GLES = 1
GLES3 = 1
endif
CC = cc -arch $(iarch) -isysroot $(IOSSDK)
CXX = c++ -arch $(iarch) -isysroot $(IOSSDK)
IPHONEMINVER :=
ifeq ($(platform),$(filter $(platform),ios9 ios-arm64))
IPHONEMINVER = -miphoneos-version-min=8.0
else
IPHONEMINVER = -miphoneos-version-min=5.0
endif
LDFLAGS += $(IPHONEMINVER)
FLAGS += $(IPHONEMINVER) -DHAVE_UNISTD_H -DIOS=1
CC += $(IPHONEMINVER)
CXX += $(IPHONEMINVER)
# tvOS
else ifeq ($(platform), tvos-arm64)
TARGET := $(TARGET_NAME)_libretro_tvos.dylib
fpic := -fPIC
SHARED := -dynamiclib
FLAGS += -DHAVE_UNISTD_H -DIOS=1 -DTVOS=1
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcrun -sdk appletvos -show-sdk-path)
endif
ifeq ($(HAVE_OPENGL),1)
GL_LIB := -framework OpenGLES
GLES = 1
GLES3 = 1
endif
CC = cc -arch arm64 -isysroot $(IOSSDK)
CXX = c++ -arch arm64 -isysroot $(IOSSDK)
MINVER = -mappletvos-version-min=11.0
LDFLAGS += $(MINVER)
FLAGS += $(MINVER)
CC += $(MINVER)
CXX += $(MINVER)
# QNX
else ifeq ($(platform), qnx)
TARGET := $(TARGET_NAME)_libretro_$(platform).so
fpic := -fPIC
SHARED := -lcpp -lm -shared -Wl,--no-undefined -Wl,--version-script=link.T
#LDFLAGS += $(PTHREAD_FLAGS)
CC = qcc -Vgcc_ntoarmv7le
CXX = QCC -Vgcc_ntoarmv7le_cpp
AR = QCC -Vgcc_ntoarmv7le
FLAGS += -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=softfp
ifeq ($(HAVE_OPENGL),1)
GL_LIB := -lGLESv2
endif
# PS3
else ifeq ($(platform), ps3)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = $(CELL_SDK)/host-win32/ppu/bin/ppu-lv2-gcc.exe
CXX = $(CELL_SDK)/host-win32/ppu/bin/ppu-lv2-g++.exe
AR = $(CELL_SDK)/host-win32/ppu/bin/ppu-lv2-ar.exe
ENDIANNESS_DEFINES := -DMSB_FIRST
OLD_GCC := 1
FLAGS += -DARCH_POWERPC_ALTIVEC
STATIC_LINKING = 1
# sncps3
else ifeq ($(platform), sncps3)
TARGET := $(TARGET_NAME)_libretro_ps3.a
CC = $(CELL_SDK)/host-win32/sn/bin/ps3ppusnc.exe
CXX = $(CELL_SDK)/host-win32/sn/bin/ps3ppusnc.exe
AR = $(CELL_SDK)/host-win32/sn/bin/ps3snarl.exe
ENDIANNESS_DEFINES := -DMSB_FIRST
CXXFLAGS += -Xc+=exceptions
OLD_GCC := 1
NO_GCC := 1
FLAGS += -DARCH_POWERPC_ALTIVEC
STATIC_LINKING = 1
# Lightweight PS3 Homebrew SDK
else ifeq ($(platform), psl1ght)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = $(PS3DEV)/ppu/bin/ppu-gcc$(EXE_EXT)
CXX = $(PS3DEV)/ppu/bin/ppu-g++$(EXE_EXT)
AR = $(PS3DEV)/ppu/bin/ppu-ar$(EXE_EXT)
ENDIANNESS_DEFINES := -DMSB_FIRST
STATIC_LINKING = 1
# PSP
else ifeq ($(platform), psp1)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = psp-gcc$(EXE_EXT)
CXX = psp-g++$(EXE_EXT)
AR = psp-ar$(EXE_EXT)
FLAGS += -DPSP -G0
STATIC_LINKING = 1
EXTRA_INCLUDES := -I$(shell psp-config --pspsdk-path)/include
# Vita
else ifeq ($(platform), vita)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = arm-vita-eabi-gcc$(EXE_EXT)
CXX = arm-vita-eabi-g++$(EXE_EXT)
AR = arm-vita-eabi-ar$(EXE_EXT)
FLAGS += -DVITA
STATIC_LINKING = 1
# Xbox 360
else ifeq ($(platform), xenon)
TARGET := $(TARGET_NAME)_libretro_xenon360.a
CC = xenon-gcc$(EXE_EXT)
CXX = xenon-g++$(EXE_EXT)
AR = xenon-ar$(EXE_EXT)
ENDIANNESS_DEFINES += -D__LIBXENON__ -m32 -D__ppc__ -DMSB_FIRST
LIBS := $(PTHREAD_FLAGS)
STATIC_LINKING = 1
# Nintendo Game Cube / Nintendo Wii
else ifneq (,$(filter $(platform),ngc wii))
ifeq ($(platform), ngc)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
ENDIANNESS_DEFINES += -DHW_DOL
else ifeq ($(platform), wii)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
ENDIANNESS_DEFINES += -DHW_RVL
endif
ENDIANNESS_DEFINES += -DGEKKO -mrvl -mcpu=750 -meabi -mhard-float -DMSB_FIRST
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT)
CXX = $(DEVKITPPC)/bin/powerpc-eabi-g++$(EXE_EXT)
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT)
EXTRA_INCLUDES := -I$(DEVKITPRO)/libogc/include
STATIC_LINKING = 1
# Nintendo WiiU
else ifeq ($(platform), wiiu)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT)
CXX = $(DEVKITPPC)/bin/powerpc-eabi-g++$(EXE_EXT)
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT)
FLAGS += -DGEKKO -mwup -mcpu=750 -meabi -mhard-float
FLAGS += -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int
ENDIANNESS_DEFINES += -DMSB_FIRST
EXTRA_INCLUDES := -Ideps
STATIC_LINKING = 1
NEED_THREADING = 0
# GCW0
else ifeq ($(platform), gcw0)
TARGET := $(TARGET_NAME)_libretro.so
CC = /opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc
CXX = /opt/gcw0-toolchain/usr/bin/mipsel-linux-g++
AR = /opt/gcw0-toolchain/usr/bin/mipsel-linux-ar
fpic := -fPIC
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
LDFLAGS += $(PTHREAD_FLAGS)
FLAGS += $(PTHREAD_FLAGS)
FLAGS += -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float
GLES = 1
GL_LIB := -lGLESv2
# Emscripten
else ifeq ($(platform), emscripten)
TARGET := $(TARGET_NAME)_libretro_$(platform).bc
fpic := -fPIC
FLAGS += -DEMSCRIPTEN
FLAGS += -msimd128 -ftree-vectorize
HAVE_OPENGL = 1
GLES = 1
GLES3 = 1
NEED_THREADING = 0
HAVE_CDROM = 0
THREADED_RECOMPILER = 0
STATIC_LINKING = 1
# Raspberry Pi 4 in 64bit mode
else ifeq ($(platform), rpi4_64)
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
GREP = grep
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
CFLAGS += -O3 -DNDEBUG -march=armv8-a+crc+simd -mtune=cortex-a72 -fsigned-char
CXXFLAGS += -O3 -DNDEBUG -march=armv8-a+crc+simd -mtune=cortex-a72 -fsigned-char
LDFLAGS += $(PTHREAD_FLAGS) -ldl -lrt
FLAGS += -DHAVE_SHM
GLES = 1
GLES3 = 1
GL_LIB := -lGLESv2
HAVE_CDROM = 0
# Windows MSVC 2017 all architectures
else ifneq (,$(findstring windows_msvc2017,$(platform)))
NO_GCC := 1
PlatformSuffix = $(subst windows_msvc2017_,,$(platform))
ifneq (,$(findstring desktop,$(PlatformSuffix)))
WinPartition = desktop
MSVC2017CompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -FS
LDFLAGS += -MANIFEST -LTCG:incremental -NXCOMPAT -DYNAMICBASE -DEBUG -OPT:REF -INCREMENTAL:NO -SUBSYSTEM:WINDOWS -MANIFESTUAC:"level='asInvoker' uiAccess='false'" -OPT:ICF -ERRORREPORT:PROMPT -NOLOGO -TLBID:1
LIBS += kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib
HAVE_CDROM = 1
else ifneq (,$(findstring uwp,$(PlatformSuffix)))
WinPartition = uwp
MSVC2017CompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WINDLL -D_UNICODE -DUNICODE -D__WRL_NO_DEFAULT_LIB__ -EHsc -FS
LDFLAGS += -APPCONTAINER -NXCOMPAT -DYNAMICBASE -MANIFEST:NO -LTCG -OPT:REF -SUBSYSTEM:CONSOLE -MANIFESTUAC:NO -OPT:ICF -ERRORREPORT:PROMPT -NOLOGO -TLBID:1 -DEBUG:FULL -WINMD:NO
LIBS += WindowsApp.lib
endif
CFLAGS += $(MSVC2017CompileFlags)
CXXFLAGS += $(MSVC2017CompileFlags)
TargetArchMoniker = $(subst $(WinPartition)_,,$(PlatformSuffix))
CC = cl.exe
CXX = cl.exe
LD = link.exe
reg_query = $(call filter_out2,$(subst $2,,$(shell reg query "$2" -v "$1" 2>nul)))
fix_path = $(subst $(SPACE),\ ,$(subst \,/,$1))
ProgramFiles86w := $(shell cmd /c "echo %PROGRAMFILES(x86)%")
ProgramFiles86 := $(shell cygpath "$(ProgramFiles86w)")
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0)
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_CURRENT_USER\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0)
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0)
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_CURRENT_USER\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0)
WindowsSdkDir := $(WindowsSdkDir)
WindowsSDKVersion ?= $(firstword $(foreach folder,$(subst $(subst \,/,$(WindowsSdkDir)Include/),,$(wildcard $(call fix_path,$(WindowsSdkDir)Include\*))),$(if $(wildcard $(call fix_path,$(WindowsSdkDir)Include/$(folder)/um/Windows.h)),$(folder),)))$(BACKSLASH)
WindowsSDKVersion := $(WindowsSDKVersion)
VsInstallBuildTools = $(ProgramFiles86)/Microsoft Visual Studio/2017/BuildTools
VsInstallEnterprise = $(ProgramFiles86)/Microsoft Visual Studio/2017/Enterprise
VsInstallProfessional = $(ProgramFiles86)/Microsoft Visual Studio/2017/Professional
VsInstallCommunity = $(ProgramFiles86)/Microsoft Visual Studio/2017/Community
VsInstallRoot ?= $(shell if [ -d "$(VsInstallBuildTools)" ]; then echo "$(VsInstallBuildTools)"; fi)
ifeq ($(VsInstallRoot), )
VsInstallRoot = $(shell if [ -d "$(VsInstallEnterprise)" ]; then echo "$(VsInstallEnterprise)"; fi)
endif
ifeq ($(VsInstallRoot), )
VsInstallRoot = $(shell if [ -d "$(VsInstallProfessional)" ]; then echo "$(VsInstallProfessional)"; fi)
endif
ifeq ($(VsInstallRoot), )
VsInstallRoot = $(shell if [ -d "$(VsInstallCommunity)" ]; then echo "$(VsInstallCommunity)"; fi)
endif
VsInstallRoot := $(VsInstallRoot)
VcCompilerToolsVer := $(shell cat "$(VsInstallRoot)/VC/Auxiliary/Build/Microsoft.VCToolsVersion.default.txt" | grep -o '[0-9\.]*')
VcCompilerToolsDir := $(VsInstallRoot)/VC/Tools/MSVC/$(VcCompilerToolsVer)
WindowsSDKSharedIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\shared")
WindowsSDKUCRTIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\ucrt")
WindowsSDKUMIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\um")
WindowsSDKUCRTLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\$(WindowsSDKVersion)\ucrt\$(TargetArchMoniker)")
WindowsSDKUMLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\$(WindowsSDKVersion)\um\$(TargetArchMoniker)")
# For some reason the HostX86 compiler doesn't like compiling for x64
# ("no such file" opening a shared library), and vice-versa.
# Work around it for now by using the strictly x86 compiler for x86, and x64 for x64.
# NOTE: What about ARM?
ifneq (,$(findstring x64,$(TargetArchMoniker)))
VCCompilerToolsBinDir := $(VcCompilerToolsDir)\bin\HostX64
else
VCCompilerToolsBinDir := $(VcCompilerToolsDir)\bin\HostX86
endif
PATH := $(shell IFS=$$'\n'; cygpath "$(VCCompilerToolsBinDir)/$(TargetArchMoniker)"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VsInstallRoot)/Common7/IDE")
INCLUDE := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/include")
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/lib/$(TargetArchMoniker)")
ifneq (,$(findstring uwp,$(PlatformSuffix)))
LIB := $(shell IFS=$$'\n'; cygpath -w "$(LIB)/store")
endif
export INCLUDE := $(INCLUDE);$(WindowsSDKSharedIncludeDir);$(WindowsSDKUCRTIncludeDir);$(WindowsSDKUMIncludeDir)
export LIB := $(LIB);$(WindowsSDKUCRTLibDir);$(WindowsSDKUMLibDir)
TARGET := $(TARGET_NAME)_libretro.dll
TARGET_TMP := $(TARGET_NAME)_libretro.lib $(TARGET_NAME)_libretro.pdb $(TARGET_NAME)_libretro.exp
LDFLAGS += -DLL
# Windows (MSYS2 / MinGW-w64).
# Targets full feature parity with the cmake LIBRETRO=ON Windows build:
# OpenGL, Vulkan, parallel-gs, DX11/DX12. Requires reasonably current
# mingw-w64 headers (>= 14.x; MSYS2 ships these by default) so that
# d3d12.h exposes ID3D12Device4 etc.
else
TARGET := $(TARGET_NAME)_libretro.dll
CC ?= gcc
CXX ?= g++
IS_X86 = 1
IS_WINDOWS = 1
IS_WIN_MINGW = 1
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
ifeq ($(GCSCAN),1)
SHARED += -Wl,--gc-sections -Wl,--print-gc-sections -Wl,-Map=gcscan.map
endif
HAVE_CDROM = 1
# Match cmake target_compile_definitions on Windows + LIBRETRO=ON.
FLAGS += -DHAVE__MKDIR \
-D_WIN32_WINNT=0x0A00 \
-DWINVER=0x0A00 \
-DNTDDI_VERSION=0x0A000006 \
-DWIN32_LEAN_AND_MEAN \
-DNOMINMAX \
-DUNICODE -D_UNICODE \
-D_HAS_EXCEPTIONS=0 \
-D_ITERATOR_DEBUG_LEVEL=0 \
-D_SCL_SECURE_NO_WARNINGS \
-D__SSE4_1__ \
-DHAVE_D3D11 -DHAVE_D3D12 \
-DZIP_STATIC \
-D_7ZIP_ST \
-DLZ4LIB_VISIBILITY= \
-DCPUINFO_SUPPORTED_PLATFORM=1
# MinGW chokes on the very large object files generated by some of the
# GS / parallel-gs sources without -Wa,-mbig-obj; the cmake build sets
# this globally for the libretro target on Windows.
FLAGS += -Wa,-mbig-obj
# Static C++ runtime - matches cmake's static-libgcc/static-libstdc++ on
# Linux and the /MT runtime on MSVC.
LDFLAGS += -static-libgcc -static-libstdc++ -static -lwinpthread
# System libraries used by the libretro core; mirrors cmake's
# PCSX2_FLAGS Windows interface link list.
LIBS += -lopengl32 -ld3d11 -ld3d12 -ldxgi -ld3dcompiler \
-lonecore -lwinmm -ladvapi32 -lole32 -loleaut32 \
-luuid -lshell32 -lkernel32 -luser32 -lgdi32 \
-lwinspool -lcomdlg32 -lws2_32 -liphlpapi \
-lwbemuuid -lsetupapi -lversion
ifeq ($(HAVE_OPENGL),1)
GL_LIB :=
endif
endif
include Makefile.common
# The multi-ISA block below uses $(eval) to generate explicit per-tier object
# rules. In make, the first explicit target seen becomes the default goal if
# none is set yet -- so a generated rule like GSBlock.sse4.o would otherwise
# hijack the default goal, making a bare `make` build only that one object.
# Pin the default goal to `all` (defined later) before any rule generation.
.DEFAULT_GOAL := all
# ---------------------------------------------------------------------------
# Multi-ISA runtime SIMD dispatch (default ON; set ENABLE_MULTI_ISA=0 to opt
# out and get the single-ISA SSE4.1 build).
#
# When ON (default), the unshared MultiISA sources are compiled three times
# (sse4/avx/avx2) into separate objects and all tiers are linked; cpuinfo
# selects the best path the host CPU supports at runtime (MULTI_ISA_SELECT in
# MultiISA.h). The sse4 tier remains and is the path chosen on any CPU lacking
# AVX/AVX2, so this does NOT regress support for SSE4-or-earlier hosts -- those
# CPUs run exactly the SSE4.1 code they did before.
#
# When OFF (ENABLE_MULTI_ISA=0), the GS/IPU/SPU2 MultiISA sources are compiled
# once at the SSE4.1 baseline and MultiISA.h resolves CURRENT_ISA to
# isa_native -- byte-identical to the historical single-ISA core build.
#
# Declared before first use below.
ENABLE_MULTI_ISA ?= 1
# ---------------------------------------------------------------------------
# Multi-ISA tier flags. Defined here, before the object generation below
# consumes them.
#
# GCC/clang (incl. MinGW, which is GCC): use feature flags rather than -march
# so the compiler can still inline shared helpers across tiers (per cmake).
# MSVC: use /arch:. There is no /arch:SSE4.1 -- SSE2 is MSVC's implicit x64
# baseline and SSE3/SSSE3/SSE4.1 intrinsics are available without an /arch:
# flag, so the sse4 tier takes no extra flag. /arch:AVX and /arch:AVX2 enable
# the wider tiers.
ifeq ($(IS_X86),1)
ifeq ($(ENABLE_MULTI_ISA),1)
ifneq (,$(findstring msvc,$(platform)))
MULTI_ISA_FLAGS_sse4 :=
MULTI_ISA_FLAGS_avx := /arch:AVX
MULTI_ISA_FLAGS_avx2 := /arch:AVX2
else
MULTI_ISA_FLAGS_sse4 := -msse4.1
MULTI_ISA_FLAGS_avx := -msse4.1 -mavx
MULTI_ISA_FLAGS_avx2 := -msse4.1 -mavx -mavx2 -mbmi -mbmi2 -mfma
endif
# Tiers in oldest->newest order. Link/archive order MUST follow this so the
# linker resolves shared inline (ODR-duplicated) symbols to the SSE4-safe
# copy; see the ordering note where tier objects are archived.
MULTI_ISA_TIERS := sse4 avx avx2
endif
endif
# ---------------------------------------------------------------------------
# Multi-ISA object generation (only when ENABLE_MULTI_ISA=1 on x86).
#
# The "unshared" GS/IPU sources contain the SIMD-templated code that
# MultiISA.h splits into per-ISA namespaces. When multi-ISA is enabled they
# must be compiled once per tier (sse4/avx/avx2) with that tier's feature
# flags and MULTI_ISA_UNSHARED_COMPILATION=isa_<tier>, producing distinct
# objects (e.g. GSRasterizer.sse4.o). Every other TU is compiled once as the
# "shared" build with MULTI_ISA_SHARED_COMPILATION defined.
#
# When the switch is OFF this whole block is skipped: the unshared files stay
# in SOURCES_CXX and are built once at the SSE4.1 baseline (CURRENT_ISA ==
# isa_native), exactly as before.
MULTI_ISA_UNSHARED_SRC := \
$(LRPS2_DIR)/GS/GSBlock.cpp \
$(LRPS2_DIR)/GS/GSLocalMemoryMultiISA.cpp \
$(LRPS2_DIR)/GS/GSXXH.cpp \
$(LRPS2_DIR)/GS/Renderers/Common/GSVertexTraceFMM.cpp \
$(LRPS2_DIR)/GS/Renderers/HW/GSRendererHWMultiISA.cpp \
$(LRPS2_DIR)/GS/Renderers/SW/GSDrawScanline.cpp \
$(LRPS2_DIR)/GS/Renderers/SW/GSDrawScanlineCodeGenerator.cpp \
$(LRPS2_DIR)/GS/Renderers/SW/GSDrawScanlineCodeGenerator.all.cpp \
$(LRPS2_DIR)/GS/Renderers/SW/GSRasterizer.cpp \
$(LRPS2_DIR)/GS/Renderers/SW/GSRendererSW.cpp \
$(LRPS2_DIR)/GS/Renderers/SW/GSSetupPrimCodeGenerator.cpp \
$(LRPS2_DIR)/GS/Renderers/SW/GSSetupPrimCodeGenerator.all.cpp \
$(LRPS2_DIR)/IPU/IPU_MultiISA.cpp \
$(LRPS2_DIR)/IPU/IPUdither.cpp \
$(LRPS2_DIR)/IPU/yuv2rgb.cpp \
$(LRPS2_DIR)/SPU2/ReverbResample.cpp
ifeq ($(IS_X86),1)
ifeq ($(ENABLE_MULTI_ISA),1)
# The shared build (everything that stays in SOURCES_CXX) needs to know it
# is the shared half of a multi-isa build.
CXXFLAGS += -DMULTI_ISA_SHARED_COMPILATION
# Pull the unshared files out of the normal (single-compile) source list;
# they are built per-tier below instead.
SOURCES_CXX := $(filter-out $(MULTI_ISA_UNSHARED_SRC),$(SOURCES_CXX))
# First tier in MULTI_ISA_TIERS is the "is-first" one (drives
# MULTI_ISA_IS_FIRST / MULTI_ISA_COMPILE_ONCE so compile-once globals are
# emitted exactly once, in the sse4 tier).
MULTI_ISA_FIRST_TIER := $(firstword $(MULTI_ISA_TIERS))
MULTI_ISA_OBJECTS :=
endif
endif
# For each (source, tier) pair, define an explicit object + rule:
# <src-without-.cpp>.<tier>.o : <src>
# compiled with the tier flags and the unshared-compilation defines.
#
# The tier objects are the UNSHARED half of the multi-isa build, so they must
# NOT see -DMULTI_ISA_SHARED_COMPILATION (it lives in the global CXXFLAGS for
# the shared TUs). MultiISA.h treats the two defines as mutually exclusive;
# having both poisons MULTI_ISA_UNSHARED_START with a static_assert. Strip the
# shared define from CXXFLAGS for the per-tier compile.
# NOTE: define-block bodies must start at column 0; the recipe line is a TAB.
define MULTI_ISA_template
$(1:.cpp=.$(2).o): MULTI_ISA_OBJ_FLAGS := $(MULTI_ISA_FLAGS_$(2)) -DMULTI_ISA_UNSHARED_COMPILATION=isa_$(2) -DMULTI_ISA_IS_FIRST=$(if $(filter $(2),$(MULTI_ISA_FIRST_TIER)),1,0)
$(1:.cpp=.$(2).o): $(1)
$$(CXX) -c $$(OBJOUT)$$@ $$< $$(filter-out -DMULTI_ISA_SHARED_COMPILATION,$$(CXXFLAGS)) $$(MULTI_ISA_OBJ_FLAGS)
MULTI_ISA_OBJECTS += $(1:.cpp=.$(2).o)
endef
ifeq ($(IS_X86),1)
ifeq ($(ENABLE_MULTI_ISA),1)
# ODR / link-order safety (the requirement that protects SSE4-or-earlier
# hosts):
#
# Each tier object is compiled with a different -m flag, so any inline
# function pulled in from a shared header (STL helpers, etc.) is emitted as
# a weak/COMDAT symbol with the SAME mangled name in every tier object, but
# with potentially tier-specific instructions in its body. The linker keeps
# the FIRST such weak symbol it sees and discards the rest. If an AVX2-built
# copy were kept and then executed on an SSE4 CPU (which happens because the
# isa_sse4 dispatch path still calls these shared inlines), it would issue
# an illegal instruction and crash -- exactly the regression we must avoid.
#
# Therefore ALL sse4 objects must precede ALL avx objects, which must
# precede ALL avx2 objects, in the order presented to ar/ld, so the
# SSE4-safe copy of every shared inline wins. We accumulate the objects
# tier-outer (sse4 group, then avx group, then avx2 group) to guarantee
# this globally -- not merely per-file. This mirrors cmake building
# GS-sse4 / GS-avx / GS-avx2 as separate archives linked oldest-first.
$(foreach tier,$(MULTI_ISA_TIERS),\
$(foreach src,$(MULTI_ISA_UNSHARED_SRC),\
$(eval $(call MULTI_ISA_template,$(src),$(tier)))))
endif
endif
WARNINGS := -Wall \
-Wno-sign-compare \
-Wno-unused-variable \
-Wno-unused-function \
-Wno-uninitialized \
$(NEW_GCC_WARNING_FLAGS) \
-Wno-strict-aliasing
# MinGW + cmake's PCSX2 build also suppresses these
ifeq ($(IS_WIN_MINGW),1)
WARNINGS += -Wno-stringop-overflow \
-Wno-stringop-truncation \
-Wno-maybe-uninitialized \
-Wno-attributes \
-Wno-unused-parameter \
-Wno-unused-value \
-Wno-format \
-Wno-format-security \
-Wno-missing-field-initializers \
-Wno-parentheses \
-Wno-missing-braces \
-Wno-unknown-pragmas \
-Wno-packed-not-aligned
# -Wno-class-memaccess is a C++-only diagnostic. Putting it in the
# shared WARNINGS makes gcc emit a noisy 'valid for C++/ObjC++ but
# not for C' warning on every C TU, so keep it CXX-only.
CXX_WARNINGS += -Wno-class-memaccess
endif
ifeq ($(NO_GCC),1)
WARNINGS :=
endif
OBJECTS := $(SOURCES_CXX:.cpp=.o) $(SOURCES_C:.c=.o) $(SOURCES_ASM:.S=.o) $(MULTI_ISA_OBJECTS)
DEPS := $(SOURCES_CXX:.cpp=.d) $(SOURCES_C:.c=.d)
all: $(TARGET)
-include $(DEPS)
ifeq ($(DEBUG), 1)
ifneq (,$(findstring msvc,$(platform)))
ifeq ($(STATIC_LINKING),1)
CFLAGS += -MTd
CXXFLAGS += -MTd
else
CFLAGS += -MDd
CXXFLAGS += -MDd
endif
CFLAGS += -Od -Zi -DDEBUG -D_DEBUG
CXXFLAGS += -Od -Zi -DDEBUG -D_DEBUG
else
CFLAGS += -O0 -g -DDEBUG -MMD
CXXFLAGS += -O0 -g -DDEBUG -MMD
endif
else
ifneq (,$(findstring msvc,$(platform)))
ifeq ($(STATIC_LINKING),1)
CFLAGS += -MT
CXXFLAGS += -MT
else
CFLAGS += -MD
CXXFLAGS += -MD
endif
CFLAGS += -O2 -DNDEBUG
CXXFLAGS += -O2 -DNDEBUG
else
CFLAGS += -O3 -DNDEBUG -MMD
CXXFLAGS += -O3 -DNDEBUG -MMD
endif
endif
# Dead-code scan (GCSCAN=1): split every function/data item into its own
# section so the linker's --gc-sections can discard unreferenced ones and
# --print-gc-sections (on SHARED above) reports each discard. The link.T
# version script anchors the GC roots to the exported retro_* API, so
# everything reachable from the libretro entry points is kept. Measurement
# only -- do not ship a GCSCAN build.
ifeq ($(GCSCAN),1)
CFLAGS += -ffunction-sections -fdata-sections
CXXFLAGS += -ffunction-sections -fdata-sections
endif
# Architecture / SIMD baseline. cmake passes -march=native; for the static
# Makefile we keep the long-standing core-libretro convention of allowing the
# user to override but defaulting to a safe x86_64 baseline. parallel-gs +
# Granite need at least SSE3 (cmake hardcodes -msse3 for granite-vulkan and
# parallel-gs); enable it globally rather than per-target.
ifeq ($(IS_X86),1)
CFLAGS += -msse -msse2 -msse4.1 -mfxsr
CXXFLAGS += -msse -msse2 -msse4.1 -mfxsr -msse3
endif
LDFLAGS += $(fpic) $(SHARED)
FLAGS += $(fpic) $(INCFLAGS)
FLAGS += $(ENDIANNESS_DEFINES) \
$(WARNINGS) \
$(CORE_DEFINE) \
-DSTDC_HEADERS \
-D__STDC_LIMIT_MACROS \
-D__LIBRETRO__ \
$(EXTRA_INCLUDES) \
-D_FILE_OFFSET_BITS=64 \
-D__STDC_CONSTANT_MACROS
ifneq (,$(findstring windows_msvc2017,$(platform)))
FLAGS += -D_CRT_SECURE_NO_WARNINGS \
-D_CRT_NONSTDC_NO_DEPRECATE \
-D__ORDER_LITTLE_ENDIAN__ \
-D__BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__ \
-DNOMINMAX \
//utf-8 \
//std:c++17
ifeq (,$(findstring windows_msvc2017_uwp,$(platform)))
LDFLAGS += opengl32.lib
endif
endif
# C++17 for everything (cmake sets cxx_std_17 on PCSX2_FLAGS / common). Note
# parallel-gs and Granite are written against C++14; -std=c++17 is a strict
# superset, so the same flag works. We disable RTTI/exceptions to match cmake.
CXXFLAGS += -std=c++17 -fno-rtti -fno-exceptions
CFLAGS += -std=gnu99
CXXFLAGS += $(FLAGS) $(CXX_WARNINGS)
CFLAGS += $(FLAGS)
ifneq ($(SANITIZER),)
CFLAGS := -fsanitize=$(SANITIZER) $(CFLAGS)
CXXFLAGS := -fsanitize=$(SANITIZER) $(CXXFLAGS)
LDFLAGS := -fsanitize=$(SANITIZER) $(LDFLAGS)
endif
OBJOUT = -o
LINKOUT = -o
ifneq (,$(findstring msvc,$(platform)))
OBJOUT = -Fo
LINKOUT = -out:
ifeq ($(STATIC_LINKING),1)
LD ?= lib.exe
STATIC_LINKING=0
else
LD = link.exe
endif
else
LD = $(CXX)
endif
$(TARGET): $(OBJECTS)
ifeq ($(STATIC_LINKING), 1)
$(AR) rcs $@ $(OBJECTS)
else
@$(LD) $(LINKOUT)$@ $^ $(LDFLAGS) $(GL_LIB) $(LIBS)
endif
%.o: %.cpp
$(CXX) -c $(OBJOUT)$@ $< $(CXXFLAGS)
%.o: %.cc
$(CXX) -c $(OBJOUT)$@ $< $(CXXFLAGS)
%.o: %.c
$(CC) -c $(OBJOUT)$@ $< $(CFLAGS)
%.o: %.S
$(CC) -c $(OBJOUT)$@ $< $(CFLAGS)
clean:
@find . -name '*.o' -delete
@find . -name '*.d' -delete
rm -f $(TARGET) $(TARGET_TMP)
.PHONY: clean