]> git.sesse.net Git - stockfish/blob - src/Makefile
Fix a dependency bug
[stockfish] / src / Makefile
1 # Stockfish, a UCI chess playing engine derived from Glaurung 2.1
2 # Copyright (C) 2004-2022 The Stockfish developers (see AUTHORS file)
3 #
4 # Stockfish is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # Stockfish is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17
18 ### ==========================================================================
19 ### Section 1. General Configuration
20 ### ==========================================================================
21
22 ### Establish the operating system name
23 KERNEL = $(shell uname -s)
24 ifeq ($(KERNEL),Linux)
25         OS = $(shell uname -o)
26 endif
27
28 ### Target Windows OS
29 ifeq ($(OS),Windows_NT)
30         ifneq ($(COMP),ndk)
31                 target_windows = yes
32         endif
33 else ifeq ($(COMP),mingw)
34         target_windows = yes
35         ifeq ($(WINE_PATH),)
36                 WINE_PATH = $(shell which wine)
37         endif
38 endif
39
40 ### Executable name
41 ifeq ($(target_windows),yes)
42         EXE = stockfish.exe
43 else
44         EXE = stockfish
45 endif
46
47 ### Installation dir definitions
48 PREFIX = /usr/local
49 BINDIR = $(PREFIX)/bin
50
51 ### Built-in benchmark for pgo-builds
52 ifeq ($(SDE_PATH),)
53         PGOBENCH = $(WINE_PATH) ./$(EXE) bench
54 else
55         PGOBENCH = $(SDE_PATH) -- $(WINE_PATH) ./$(EXE) bench
56 endif
57
58 ### Source and object files
59 SRCS = benchmark.cpp bitbase.cpp bitboard.cpp endgame.cpp evaluate.cpp main.cpp \
60         material.cpp misc.cpp movegen.cpp movepick.cpp pawns.cpp position.cpp psqt.cpp \
61         search.cpp thread.cpp timeman.cpp tt.cpp uci.cpp ucioption.cpp tune.cpp syzygy/tbprobe.cpp \
62         nnue/evaluate_nnue.cpp nnue/features/half_ka_v2_hm.cpp
63
64 OBJS = $(notdir $(SRCS:.cpp=.o))
65
66 VPATH = syzygy:nnue:nnue/features
67
68 ### ==========================================================================
69 ### Section 2. High-level Configuration
70 ### ==========================================================================
71 #
72 # flag                --- Comp switch      --- Description
73 # ----------------------------------------------------------------------------
74 #
75 # debug = yes/no      --- -DNDEBUG         --- Enable/Disable debug mode
76 # sanitize = none/<sanitizer> ... (-fsanitize )
77 #                     --- ( undefined )    --- enable undefined behavior checks
78 #                     --- ( thread    )    --- enable threading error checks
79 #                     --- ( address   )    --- enable memory access checks
80 #                     --- ...etc...        --- see compiler documentation for supported sanitizers
81 # optimize = yes/no   --- (-O3/-fast etc.) --- Enable/Disable optimizations
82 # arch = (name)       --- (-arch)          --- Target architecture
83 # bits = 64/32        --- -DIS_64BIT       --- 64-/32-bit operating system
84 # prefetch = yes/no   --- -DUSE_PREFETCH   --- Use prefetch asm-instruction
85 # popcnt = yes/no     --- -DUSE_POPCNT     --- Use popcnt asm-instruction
86 # pext = yes/no       --- -DUSE_PEXT       --- Use pext x86_64 asm-instruction
87 # sse = yes/no        --- -msse            --- Use Intel Streaming SIMD Extensions
88 # mmx = yes/no        --- -mmmx            --- Use Intel MMX instructions
89 # sse2 = yes/no       --- -msse2           --- Use Intel Streaming SIMD Extensions 2
90 # ssse3 = yes/no      --- -mssse3          --- Use Intel Supplemental Streaming SIMD Extensions 3
91 # sse41 = yes/no      --- -msse4.1         --- Use Intel Streaming SIMD Extensions 4.1
92 # avx2 = yes/no       --- -mavx2           --- Use Intel Advanced Vector Extensions 2
93 # avxvnni = yes/no    --- -mavxvnni        --- Use Intel Vector Neural Network Instructions AVX
94 # avx512 = yes/no     --- -mavx512bw       --- Use Intel Advanced Vector Extensions 512
95 # vnni256 = yes/no    --- -mavx512vnni     --- Use Intel Vector Neural Network Instructions 256
96 # vnni512 = yes/no    --- -mavx512vnni     --- Use Intel Vector Neural Network Instructions 512
97 # neon = yes/no       --- -DUSE_NEON       --- Use ARM SIMD architecture
98 #
99 # Note that Makefile is space sensitive, so when adding new architectures
100 # or modifying existing flags, you have to make sure there are no extra spaces
101 # at the end of the line for flag values.
102 #
103 # Example of use for these flags:
104 # make build ARCH=x86-64-avx512 debug=yes sanitize="address undefined"
105
106
107 ### 2.1. General and architecture defaults
108
109 ifeq ($(ARCH),)
110    ARCH = x86-64-modern
111    help_skip_sanity = yes
112 endif
113 # explicitly check for the list of supported architectures (as listed with make help),
114 # the user can override with `make ARCH=x86-32-vnni256 SUPPORTED_ARCH=true`
115 ifeq ($(ARCH), $(filter $(ARCH), \
116                  x86-64-vnni512 x86-64-vnni256 x86-64-avx512 x86-64-avxvnni x86-64-bmi2 \
117                  x86-64-avx2 x86-64-sse41-popcnt x86-64-modern x86-64-ssse3 x86-64-sse3-popcnt \
118                  x86-64 x86-32-sse41-popcnt x86-32-sse2 x86-32 ppc-64 ppc-32 e2k \
119                  armv7 armv7-neon armv8 apple-silicon general-64 general-32 riscv64))
120    SUPPORTED_ARCH=true
121 else
122    SUPPORTED_ARCH=false
123 endif
124
125 optimize = yes
126 debug = no
127 sanitize = none
128 bits = 64
129 prefetch = no
130 popcnt = no
131 pext = no
132 sse = no
133 mmx = no
134 sse2 = no
135 ssse3 = no
136 sse41 = no
137 avx2 = no
138 avxvnni = no
139 avx512 = no
140 vnni256 = no
141 vnni512 = no
142 neon = no
143 arm_version = 0
144 STRIP = strip
145
146 ### 2.2 Architecture specific
147
148 ifeq ($(findstring x86,$(ARCH)),x86)
149
150 # x86-32/64
151
152 ifeq ($(findstring x86-32,$(ARCH)),x86-32)
153         arch = i386
154         bits = 32
155         sse = no
156         mmx = yes
157 else
158         arch = x86_64
159         sse = yes
160         sse2 = yes
161 endif
162
163 ifeq ($(findstring -sse,$(ARCH)),-sse)
164         sse = yes
165 endif
166
167 ifeq ($(findstring -popcnt,$(ARCH)),-popcnt)
168         popcnt = yes
169 endif
170
171 ifeq ($(findstring -mmx,$(ARCH)),-mmx)
172         mmx = yes
173 endif
174
175 ifeq ($(findstring -sse2,$(ARCH)),-sse2)
176         sse = yes
177         sse2 = yes
178 endif
179
180 ifeq ($(findstring -ssse3,$(ARCH)),-ssse3)
181         sse = yes
182         sse2 = yes
183         ssse3 = yes
184 endif
185
186 ifeq ($(findstring -sse41,$(ARCH)),-sse41)
187         sse = yes
188         sse2 = yes
189         ssse3 = yes
190         sse41 = yes
191 endif
192
193 ifeq ($(findstring -modern,$(ARCH)),-modern)
194         popcnt = yes
195         sse = yes
196         sse2 = yes
197         ssse3 = yes
198         sse41 = yes
199 endif
200
201 ifeq ($(findstring -avx2,$(ARCH)),-avx2)
202         popcnt = yes
203         sse = yes
204         sse2 = yes
205         ssse3 = yes
206         sse41 = yes
207         avx2 = yes
208 endif
209
210 ifeq ($(findstring -avxvnni,$(ARCH)),-avxvnni)
211         popcnt = yes
212         sse = yes
213         sse2 = yes
214         ssse3 = yes
215         sse41 = yes
216         avx2 = yes
217         avxvnni = yes
218         pext = yes
219 endif
220
221 ifeq ($(findstring -bmi2,$(ARCH)),-bmi2)
222         popcnt = yes
223         sse = yes
224         sse2 = yes
225         ssse3 = yes
226         sse41 = yes
227         avx2 = yes
228         pext = yes
229 endif
230
231 ifeq ($(findstring -avx512,$(ARCH)),-avx512)
232         popcnt = yes
233         sse = yes
234         sse2 = yes
235         ssse3 = yes
236         sse41 = yes
237         avx2 = yes
238         pext = yes
239         avx512 = yes
240 endif
241
242 ifeq ($(findstring -vnni256,$(ARCH)),-vnni256)
243         popcnt = yes
244         sse = yes
245         sse2 = yes
246         ssse3 = yes
247         sse41 = yes
248         avx2 = yes
249         pext = yes
250         vnni256 = yes
251 endif
252
253 ifeq ($(findstring -vnni512,$(ARCH)),-vnni512)
254         popcnt = yes
255         sse = yes
256         sse2 = yes
257         ssse3 = yes
258         sse41 = yes
259         avx2 = yes
260         pext = yes
261         avx512 = yes
262         vnni512 = yes
263 endif
264
265 ifeq ($(sse),yes)
266         prefetch = yes
267 endif
268
269 # 64-bit pext is not available on x86-32
270 ifeq ($(bits),32)
271         pext = no
272 endif
273
274 else
275
276 # all other architectures
277
278 ifeq ($(ARCH),general-32)
279         arch = any
280         bits = 32
281 endif
282
283 ifeq ($(ARCH),general-64)
284         arch = any
285 endif
286
287 ifeq ($(ARCH),armv7)
288         arch = armv7
289         prefetch = yes
290         bits = 32
291         arm_version = 7
292 endif
293
294 ifeq ($(ARCH),armv7-neon)
295         arch = armv7
296         prefetch = yes
297         popcnt = yes
298         neon = yes
299         bits = 32
300         arm_version = 7
301 endif
302
303 ifeq ($(ARCH),armv8)
304         arch = armv8
305         prefetch = yes
306         popcnt = yes
307         neon = yes
308         arm_version = 8
309 endif
310
311 ifeq ($(ARCH),apple-silicon)
312         arch = arm64
313         prefetch = yes
314         popcnt = yes
315         neon = yes
316         arm_version = 8
317 endif
318
319 ifeq ($(ARCH),ppc-32)
320         arch = ppc
321         bits = 32
322 endif
323
324 ifeq ($(ARCH),ppc-64)
325         arch = ppc64
326         popcnt = yes
327         prefetch = yes
328 endif
329
330 ifeq ($(findstring e2k,$(ARCH)),e2k)
331         arch = e2k
332         mmx = yes
333         bits = 64
334         sse = yes
335         sse2 = yes
336         ssse3 = yes
337         sse41 = yes
338         popcnt = yes
339 endif
340
341 ifeq ($(ARCH),riscv64)
342         arch = riscv64
343 endif
344 endif
345
346
347 ### ==========================================================================
348 ### Section 3. Low-level Configuration
349 ### ==========================================================================
350
351 ### 3.1 Selecting compiler (default = gcc)
352 ifeq ($(MAKELEVEL),0)
353        export ENV_CXXFLAGS := $(CXXFLAGS)
354        export ENV_DEPENDFLAGS := $(DEPENDFLAGS)
355        export ENV_LDFLAGS := $(LDFLAGS)
356 endif
357
358 CXXFLAGS = $(ENV_CXXFLAGS) -Wall -Wcast-qual -fno-exceptions -std=c++17 $(EXTRACXXFLAGS)
359 DEPENDFLAGS = $(ENV_DEPENDFLAGS) -std=c++17
360 LDFLAGS = $(ENV_LDFLAGS) $(EXTRALDFLAGS)
361
362 ifeq ($(COMP),)
363         COMP=gcc
364 endif
365
366 ifeq ($(COMP),gcc)
367         comp=gcc
368         CXX=g++
369         CXXFLAGS += -pedantic -Wextra -Wshadow
370
371         ifeq ($(arch),$(filter $(arch),armv7 armv8 riscv64))
372                 ifeq ($(OS),Android)
373                         CXXFLAGS += -m$(bits)
374                         LDFLAGS += -m$(bits)
375                 endif
376                 ifeq ($(ARCH),riscv64)
377                         CXXFLAGS += -latomic
378                 endif
379         else
380                 CXXFLAGS += -m$(bits)
381                 LDFLAGS += -m$(bits)
382         endif
383
384         ifeq ($(arch),$(filter $(arch),armv7))
385                 LDFLAGS += -latomic
386         endif
387
388         ifneq ($(KERNEL),Darwin)
389            LDFLAGS += -Wl,--no-as-needed
390         endif
391 endif
392
393 ifeq ($(target_windows),yes)
394         LDFLAGS += -static
395 endif
396
397 ifeq ($(COMP),mingw)
398         comp=mingw
399
400         ifeq ($(bits),64)
401                 ifeq ($(shell which x86_64-w64-mingw32-c++-posix 2> /dev/null),)
402                         CXX=x86_64-w64-mingw32-c++
403                 else
404                         CXX=x86_64-w64-mingw32-c++-posix
405                 endif
406         else
407                 ifeq ($(shell which i686-w64-mingw32-c++-posix 2> /dev/null),)
408                         CXX=i686-w64-mingw32-c++
409                 else
410                         CXX=i686-w64-mingw32-c++-posix
411                 endif
412         endif
413         CXXFLAGS += -pedantic -Wextra -Wshadow
414 endif
415
416 ifeq ($(COMP),icc)
417         comp=icc
418         CXX=icpc
419         CXXFLAGS += -diag-disable 1476,10120 -Wcheck -Wabi -Wdeprecated -strict-ansi
420 endif
421
422 ifeq ($(COMP),clang)
423         comp=clang
424         CXX=clang++
425         ifeq ($(target_windows),yes)
426                 CXX=x86_64-w64-mingw32-clang++
427         endif
428
429         CXXFLAGS += -pedantic -Wextra -Wshadow
430
431         ifeq ($(filter $(KERNEL),Darwin OpenBSD FreeBSD),)
432         ifeq ($(target_windows),)
433         ifneq ($(RTLIB),compiler-rt)
434                 LDFLAGS += -latomic
435         endif
436         endif
437         endif
438
439         ifeq ($(arch),$(filter $(arch),armv7 armv8 riscv64))
440                 ifeq ($(OS),Android)
441                         CXXFLAGS += -m$(bits)
442                         LDFLAGS += -m$(bits)
443                 endif
444                 ifeq ($(ARCH),riscv64)
445                         CXXFLAGS += -latomic
446                 endif
447         else
448                 CXXFLAGS += -m$(bits)
449                 LDFLAGS += -m$(bits)
450         endif
451 endif
452
453 ifeq ($(KERNEL),Darwin)
454         CXXFLAGS += -mmacosx-version-min=10.14
455         LDFLAGS += -mmacosx-version-min=10.14
456         ifneq ($(arch),any)
457                 CXXFLAGS += -arch $(arch)
458                 LDFLAGS += -arch $(arch)
459         endif
460         XCRUN = xcrun
461 endif
462
463 # To cross-compile for Android, NDK version r21 or later is recommended.
464 # In earlier NDK versions, you'll need to pass -fno-addrsig if using GNU binutils.
465 # Currently we don't know how to make PGO builds with the NDK yet.
466 ifeq ($(COMP),ndk)
467         CXXFLAGS += -stdlib=libc++ -fPIE
468         comp=clang
469         ifeq ($(arch),armv7)
470                 CXX=armv7a-linux-androideabi16-clang++
471                 CXXFLAGS += -mthumb -march=armv7-a -mfloat-abi=softfp -mfpu=neon
472                 ifneq ($(shell which arm-linux-androideabi-strip 2>/dev/null),)
473                         STRIP=arm-linux-androideabi-strip
474                 else
475                         STRIP=llvm-strip
476                 endif
477         endif
478         ifeq ($(arch),armv8)
479                 CXX=aarch64-linux-android21-clang++
480                 ifneq ($(shell which aarch64-linux-android-strip 2>/dev/null),)
481                         STRIP=aarch64-linux-android-strip
482                 else
483                         STRIP=llvm-strip
484                 endif
485         endif
486         LDFLAGS += -static-libstdc++ -pie -lm -latomic
487 endif
488
489 ifeq ($(comp),icc)
490         profile_make = icc-profile-make
491         profile_use = icc-profile-use
492 else ifeq ($(comp),clang)
493         profile_make = clang-profile-make
494         profile_use = clang-profile-use
495 else
496         profile_make = gcc-profile-make
497         profile_use = gcc-profile-use
498         ifeq ($(KERNEL),Darwin)
499                 EXTRAPROFILEFLAGS = -fvisibility=hidden
500         endif
501 endif
502
503 ### Travis CI script uses COMPILER to overwrite CXX
504 ifdef COMPILER
505         COMPCXX=$(COMPILER)
506 endif
507
508 ### Allow overwriting CXX from command line
509 ifdef COMPCXX
510         CXX=$(COMPCXX)
511 endif
512
513 ### Sometimes gcc is really clang
514 ifeq ($(COMP),gcc)
515         gccversion = $(shell $(CXX) --version 2>/dev/null)
516         gccisclang = $(findstring clang,$(gccversion))
517         ifneq ($(gccisclang),)
518                 profile_make = clang-profile-make
519                 profile_use = clang-profile-use
520         endif
521 endif
522
523 ### On mingw use Windows threads, otherwise POSIX
524 ifneq ($(comp),mingw)
525         CXXFLAGS += -DUSE_PTHREADS
526         # On Android Bionic's C library comes with its own pthread implementation bundled in
527         ifneq ($(OS),Android)
528                 # Haiku has pthreads in its libroot, so only link it in on other platforms
529                 ifneq ($(KERNEL),Haiku)
530                         ifneq ($(COMP),ndk)
531                                 LDFLAGS += -lpthread
532                         endif
533                 endif
534         endif
535 endif
536
537 ### 3.2.1 Debugging
538 ifeq ($(debug),no)
539         CXXFLAGS += -DNDEBUG
540 else
541         CXXFLAGS += -g
542 endif
543
544 ### 3.2.2 Debugging with undefined behavior sanitizers
545 ifneq ($(sanitize),none)
546         CXXFLAGS += -g3 $(addprefix -fsanitize=,$(sanitize))
547         LDFLAGS += $(addprefix -fsanitize=,$(sanitize))
548 endif
549
550 ### 3.3 Optimization
551 ifeq ($(optimize),yes)
552
553         CXXFLAGS += -O3
554
555         ifeq ($(comp),gcc)
556                 ifeq ($(OS), Android)
557                         CXXFLAGS += -fno-gcse -mthumb -march=armv7-a -mfloat-abi=softfp
558                 endif
559         endif
560
561         ifeq ($(KERNEL),Darwin)
562                 ifeq ($(comp),$(filter $(comp),clang icc))
563                         CXXFLAGS += -mdynamic-no-pic
564                 endif
565
566                 ifeq ($(comp),gcc)
567                         ifneq ($(arch),arm64)
568                                 CXXFLAGS += -mdynamic-no-pic
569                         endif
570                 endif
571         endif
572
573         ifeq ($(comp),clang)
574                 CXXFLAGS += -fexperimental-new-pass-manager
575         endif
576 endif
577
578 ### 3.4 Bits
579 ifeq ($(bits),64)
580         CXXFLAGS += -DIS_64BIT
581 endif
582
583 ### 3.5 prefetch and popcount
584 ifeq ($(prefetch),yes)
585         ifeq ($(sse),yes)
586                 CXXFLAGS += -msse
587         endif
588 else
589         CXXFLAGS += -DNO_PREFETCH
590 endif
591
592 ifeq ($(popcnt),yes)
593         ifeq ($(arch),$(filter $(arch),ppc64 armv7 armv8 arm64))
594                 CXXFLAGS += -DUSE_POPCNT
595         else ifeq ($(comp),icc)
596                 CXXFLAGS += -msse3 -DUSE_POPCNT
597         else
598                 CXXFLAGS += -msse3 -mpopcnt -DUSE_POPCNT
599         endif
600 endif
601
602 ### 3.6 SIMD architectures
603 ifeq ($(avx2),yes)
604         CXXFLAGS += -DUSE_AVX2
605         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
606                 CXXFLAGS += -mavx2 -mbmi
607         endif
608 endif
609
610 ifeq ($(avxvnni),yes)
611         CXXFLAGS += -DUSE_VNNI -DUSE_AVXVNNI
612         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
613                 CXXFLAGS += -mavxvnni
614         endif
615 endif
616
617 ifeq ($(avx512),yes)
618         CXXFLAGS += -DUSE_AVX512
619         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
620                 CXXFLAGS += -mavx512f -mavx512bw
621         endif
622 endif
623
624 ifeq ($(vnni256),yes)
625         CXXFLAGS += -DUSE_VNNI
626         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
627                 CXXFLAGS += -mavx512f -mavx512bw -mavx512vnni -mavx512dq -mavx512vl -mprefer-vector-width=256
628         endif
629 endif
630
631 ifeq ($(vnni512),yes)
632         CXXFLAGS += -DUSE_VNNI
633         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
634                 CXXFLAGS += -mavx512vnni -mavx512dq -mavx512vl
635         endif
636 endif
637
638 ifeq ($(sse41),yes)
639         CXXFLAGS += -DUSE_SSE41
640         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
641                 CXXFLAGS += -msse4.1
642         endif
643 endif
644
645 ifeq ($(ssse3),yes)
646         CXXFLAGS += -DUSE_SSSE3
647         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
648                 CXXFLAGS += -mssse3
649         endif
650 endif
651
652 ifeq ($(sse2),yes)
653         CXXFLAGS += -DUSE_SSE2
654         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
655                 CXXFLAGS += -msse2
656         endif
657 endif
658
659 ifeq ($(mmx),yes)
660         CXXFLAGS += -DUSE_MMX
661         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
662                 CXXFLAGS += -mmmx
663         endif
664 endif
665
666 ifeq ($(neon),yes)
667         CXXFLAGS += -DUSE_NEON=$(arm_version)
668         ifeq ($(KERNEL),Linux)
669         ifneq ($(COMP),ndk)
670         ifneq ($(arch),armv8)
671                 CXXFLAGS += -mfpu=neon
672         endif
673         endif
674         endif
675 endif
676
677 ### 3.7 pext
678 ifeq ($(pext),yes)
679         CXXFLAGS += -DUSE_PEXT
680         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
681                 CXXFLAGS += -mbmi2
682         endif
683 endif
684
685 ### 3.7.1 Try to include git commit sha for versioning
686 GIT_SHA = $(shell git rev-parse --short HEAD 2>/dev/null)
687 ifneq ($(GIT_SHA), )
688         CXXFLAGS += -DGIT_SHA=\"$(GIT_SHA)\"
689 endif
690
691 ### 3.7.2 Try to include git commit date for versioning
692 GIT_DATE = $(shell git show -s --date=format:'%Y%m%d' --format=%cd HEAD 2>/dev/null)
693 ifneq ($(GIT_DATE), )
694         CXXFLAGS += -DGIT_DATE=\"$(GIT_DATE)\"
695 endif
696
697 ### 3.8 Link Time Optimization
698 ### This is a mix of compile and link time options because the lto link phase
699 ### needs access to the optimization flags.
700 ifeq ($(optimize),yes)
701 ifeq ($(debug), no)
702         ifeq ($(comp),clang)
703                 CXXFLAGS += -flto=full
704                 ifeq ($(target_windows),yes)
705                         CXXFLAGS += -fuse-ld=lld
706                 endif
707                 LDFLAGS += $(CXXFLAGS)
708
709 # GCC and CLANG use different methods for parallelizing LTO and CLANG pretends to be
710 # GCC on some systems.
711         else ifeq ($(comp),gcc)
712         ifeq ($(gccisclang),)
713                 CXXFLAGS += -flto -flto-partition=one
714                 LDFLAGS += $(CXXFLAGS) -flto=jobserver
715         else
716                 CXXFLAGS += -flto=full
717                 LDFLAGS += $(CXXFLAGS)
718         endif
719
720 # To use LTO and static linking on Windows,
721 # the tool chain requires gcc version 10.1 or later.
722         else ifeq ($(comp),mingw)
723                 CXXFLAGS += -flto -flto-partition=one
724                 LDFLAGS += $(CXXFLAGS) -save-temps
725         endif
726 endif
727 endif
728
729 ### 3.9 Android 5 can only run position independent executables. Note that this
730 ### breaks Android 4.0 and earlier.
731 ifeq ($(OS), Android)
732         CXXFLAGS += -fPIE
733         LDFLAGS += -fPIE -pie
734 endif
735
736 ### ==========================================================================
737 ### Section 4. Public Targets
738 ### ==========================================================================
739
740
741 help:
742         @echo ""
743         @echo "To compile stockfish, type: "
744         @echo ""
745         @echo "make target ARCH=arch [COMP=compiler] [COMPCXX=cxx]"
746         @echo ""
747         @echo "Supported targets:"
748         @echo ""
749         @echo "help                    > Display architecture details"
750         @echo "profile-build           > standard build with profile-guided optimization"
751         @echo "build                   > skip profile-guided optimization"
752         @echo "net                     > Download the default nnue net"
753         @echo "strip                   > Strip executable"
754         @echo "install                 > Install executable"
755         @echo "clean                   > Clean up"
756         @echo ""
757         @echo "Supported archs:"
758         @echo ""
759         @echo "x86-64-vnni512          > x86 64-bit with vnni support 512bit wide"
760         @echo "x86-64-vnni256          > x86 64-bit with vnni support 256bit wide"
761         @echo "x86-64-avx512           > x86 64-bit with avx512 support"
762         @echo "x86-64-avxvnni          > x86 64-bit with avxvnni support"
763         @echo "x86-64-bmi2             > x86 64-bit with bmi2 support"
764         @echo "x86-64-avx2             > x86 64-bit with avx2 support"
765         @echo "x86-64-sse41-popcnt     > x86 64-bit with sse41 and popcnt support"
766         @echo "x86-64-modern           > common modern CPU, currently x86-64-sse41-popcnt"
767         @echo "x86-64-ssse3            > x86 64-bit with ssse3 support"
768         @echo "x86-64-sse3-popcnt      > x86 64-bit with sse3 and popcnt support"
769         @echo "x86-64                  > x86 64-bit generic (with sse2 support)"
770         @echo "x86-32-sse41-popcnt     > x86 32-bit with sse41 and popcnt support"
771         @echo "x86-32-sse2             > x86 32-bit with sse2 support"
772         @echo "x86-32                  > x86 32-bit generic (with mmx and sse support)"
773         @echo "ppc-64                  > PPC 64-bit"
774         @echo "ppc-32                  > PPC 32-bit"
775         @echo "armv7                   > ARMv7 32-bit"
776         @echo "armv7-neon              > ARMv7 32-bit with popcnt and neon"
777         @echo "armv8                   > ARMv8 64-bit with popcnt and neon"
778         @echo "e2k                     > Elbrus 2000"
779         @echo "apple-silicon           > Apple silicon ARM64"
780         @echo "general-64              > unspecified 64-bit"
781         @echo "general-32              > unspecified 32-bit"
782         @echo "riscv64                 > RISC-V 64-bit"
783         @echo ""
784         @echo "Supported compilers:"
785         @echo ""
786         @echo "gcc                     > Gnu compiler (default)"
787         @echo "mingw                   > Gnu compiler with MinGW under Windows"
788         @echo "clang                   > LLVM Clang compiler"
789         @echo "icc                     > Intel compiler"
790         @echo "ndk                     > Google NDK to cross-compile for Android"
791         @echo ""
792         @echo "Simple examples. If you don't know what to do, you likely want to run one of: "
793         @echo ""
794         @echo "make -j profile-build ARCH=x86-64-avx2    # typically a fast compile for common systems "
795         @echo "make -j profile-build ARCH=x86-64-modern  # A more portable compile for 64-bit systems "
796         @echo "make -j profile-build ARCH=x86-64         # A portable compile for 64-bit systems "
797         @echo ""
798         @echo "Advanced examples, for experienced users: "
799         @echo ""
800         @echo "make -j profile-build ARCH=x86-64-bmi2"
801         @echo "make -j profile-build ARCH=x86-64-bmi2 COMP=gcc COMPCXX=g++-9.0"
802         @echo "make -j build ARCH=x86-64-ssse3 COMP=clang"
803         @echo ""
804         @echo "-------------------------------"
805 ifeq ($(SUPPORTED_ARCH)$(help_skip_sanity), true)
806         @echo "The selected architecture $(ARCH) will enable the following configuration: "
807         @$(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
808 else
809         @echo "Specify a supported architecture with the ARCH option for more details"
810         @echo ""
811 endif
812
813
814 .PHONY: help build profile-build strip install clean net objclean profileclean \
815         config-sanity icc-profile-use icc-profile-make gcc-profile-use gcc-profile-make \
816         clang-profile-use clang-profile-make FORCE
817
818 build: net config-sanity
819         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
820
821 profile-build: net config-sanity objclean profileclean
822         @echo ""
823         @echo "Step 1/4. Building instrumented executable ..."
824         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_make)
825         @echo ""
826         @echo "Step 2/4. Running benchmark for pgo-build ..."
827         $(PGOBENCH) 2>&1 | tail -n 4
828         @echo ""
829         @echo "Step 3/4. Building optimized executable ..."
830         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) objclean
831         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
832         @echo ""
833         @echo "Step 4/4. Deleting profile data ..."
834         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) profileclean
835
836 strip:
837         $(STRIP) $(EXE)
838
839 install:
840         -mkdir -p -m 755 $(BINDIR)
841         -cp $(EXE) $(BINDIR)
842         $(STRIP) $(BINDIR)/$(EXE)
843
844 # clean all
845 clean: objclean profileclean
846         @rm -f .depend *~ core
847
848 # evaluation network (nnue)
849 net:
850         $(eval nnuenet := $(shell grep EvalFileDefaultName evaluate.h | grep define | sed 's/.*\(nn-[a-z0-9]\{12\}.nnue\).*/\1/'))
851         @echo "Default net: $(nnuenet)"
852         $(eval nnuedownloadurl1 := https://tests.stockfishchess.org/api/nn/$(nnuenet))
853         $(eval nnuedownloadurl2 := https://github.com/official-stockfish/networks/raw/master/$(nnuenet))
854         $(eval curl_or_wget := $(shell if hash curl 2>/dev/null; then echo "curl -skL"; elif hash wget 2>/dev/null; then echo "wget -qO-"; fi))
855         @if [ "x$(curl_or_wget)" = "x" ]; then \
856             echo "Neither curl nor wget is installed. Install one of these tools unless the net has been downloaded manually"; \
857         fi
858         $(eval shasum_command := $(shell if hash shasum 2>/dev/null; then echo "shasum -a 256 "; elif hash sha256sum 2>/dev/null; then echo "sha256sum "; fi))
859         @if [ "x$(shasum_command)" = "x" ]; then \
860             echo "shasum / sha256sum not found, skipping net validation"; \
861         fi
862         @for nnuedownloadurl in "$(nnuedownloadurl1)" "$(nnuedownloadurl2)"; do \
863            if test -f "$(nnuenet)"; then \
864               echo "$(nnuenet) available."; \
865            else \
866               if [ "x$(curl_or_wget)" != "x" ]; then \
867                  echo "Downloading $${nnuedownloadurl}"; $(curl_or_wget) $${nnuedownloadurl} > $(nnuenet);\
868               else \
869                  echo "No net found and download not possible"; exit 1;\
870               fi; \
871            fi; \
872            if [ "x$(shasum_command)" != "x" ]; then \
873               if [ "$(nnuenet)" != "nn-"`$(shasum_command) $(nnuenet) | cut -c1-12`".nnue" ]; then \
874                  echo "Removing failed download"; rm -f $(nnuenet); \
875               else \
876                  echo "Network validated"; break; \
877               fi; \
878            fi; \
879         done
880         @if ! test -f "$(nnuenet)"; then \
881             echo "Failed to download $(nnuenet)."; \
882         fi
883
884 # clean binaries and objects
885 objclean:
886         @rm -f stockfish stockfish.exe *.o ./syzygy/*.o ./nnue/*.o ./nnue/features/*.o
887
888 # clean auxiliary profiling files
889 profileclean:
890         @rm -rf profdir
891         @rm -f bench.txt *.gcda *.gcno ./syzygy/*.gcda ./nnue/*.gcda ./nnue/features/*.gcda *.s
892         @rm -f stockfish.profdata *.profraw
893         @rm -f stockfish.*args*
894         @rm -f stockfish.*lt*
895         @rm -f stockfish.res
896         @rm -f ./-lstdc++.res
897
898 default:
899         help
900
901 ### ==========================================================================
902 ### Section 5. Private Targets
903 ### ==========================================================================
904
905 all: $(EXE) .depend
906
907 config-sanity: net
908         @echo ""
909         @echo "Config:"
910         @echo "debug: '$(debug)'"
911         @echo "sanitize: '$(sanitize)'"
912         @echo "optimize: '$(optimize)'"
913         @echo "arch: '$(arch)'"
914         @echo "bits: '$(bits)'"
915         @echo "kernel: '$(KERNEL)'"
916         @echo "os: '$(OS)'"
917         @echo "prefetch: '$(prefetch)'"
918         @echo "popcnt: '$(popcnt)'"
919         @echo "pext: '$(pext)'"
920         @echo "sse: '$(sse)'"
921         @echo "mmx: '$(mmx)'"
922         @echo "sse2: '$(sse2)'"
923         @echo "ssse3: '$(ssse3)'"
924         @echo "sse41: '$(sse41)'"
925         @echo "avx2: '$(avx2)'"
926         @echo "avxvnni: '$(avxvnni)'"
927         @echo "avx512: '$(avx512)'"
928         @echo "vnni256: '$(vnni256)'"
929         @echo "vnni512: '$(vnni512)'"
930         @echo "neon: '$(neon)'"
931         @echo "arm_version: '$(arm_version)'"
932         @echo ""
933         @echo "Flags:"
934         @echo "CXX: $(CXX)"
935         @echo "CXXFLAGS: $(CXXFLAGS)"
936         @echo "LDFLAGS: $(LDFLAGS)"
937         @echo ""
938         @echo "Testing config sanity. If this fails, try 'make help' ..."
939         @echo ""
940         @test "$(debug)" = "yes" || test "$(debug)" = "no"
941         @test "$(optimize)" = "yes" || test "$(optimize)" = "no"
942         @test "$(SUPPORTED_ARCH)" = "true"
943         @test "$(arch)" = "any" || test "$(arch)" = "x86_64" || test "$(arch)" = "i386" || \
944          test "$(arch)" = "ppc64" || test "$(arch)" = "ppc" || test "$(arch)" = "e2k" || \
945          test "$(arch)" = "armv7" || test "$(arch)" = "armv8" || test "$(arch)" = "arm64" || test "$(arch)" = "riscv64"
946         @test "$(bits)" = "32" || test "$(bits)" = "64"
947         @test "$(prefetch)" = "yes" || test "$(prefetch)" = "no"
948         @test "$(popcnt)" = "yes" || test "$(popcnt)" = "no"
949         @test "$(pext)" = "yes" || test "$(pext)" = "no"
950         @test "$(sse)" = "yes" || test "$(sse)" = "no"
951         @test "$(mmx)" = "yes" || test "$(mmx)" = "no"
952         @test "$(sse2)" = "yes" || test "$(sse2)" = "no"
953         @test "$(ssse3)" = "yes" || test "$(ssse3)" = "no"
954         @test "$(sse41)" = "yes" || test "$(sse41)" = "no"
955         @test "$(avx2)" = "yes" || test "$(avx2)" = "no"
956         @test "$(avx512)" = "yes" || test "$(avx512)" = "no"
957         @test "$(vnni256)" = "yes" || test "$(vnni256)" = "no"
958         @test "$(vnni512)" = "yes" || test "$(vnni512)" = "no"
959         @test "$(neon)" = "yes" || test "$(neon)" = "no"
960         @test "$(comp)" = "gcc" || test "$(comp)" = "icc" || test "$(comp)" = "mingw" || test "$(comp)" = "clang" \
961         || test "$(comp)" = "armv7a-linux-androideabi16-clang"  || test "$(comp)" = "aarch64-linux-android21-clang"
962
963 $(EXE): $(OBJS)
964         +$(CXX) -o $@ $(OBJS) $(LDFLAGS)
965
966 # Force recompilation to ensure version info is up-to-date
967 misc.o: FORCE
968 FORCE:
969
970 clang-profile-make:
971         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
972         EXTRACXXFLAGS='-fprofile-instr-generate ' \
973         EXTRALDFLAGS=' -fprofile-instr-generate' \
974         all
975
976 clang-profile-use:
977         $(XCRUN) llvm-profdata merge -output=stockfish.profdata *.profraw
978         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
979         EXTRACXXFLAGS='-fprofile-instr-use=stockfish.profdata' \
980         EXTRALDFLAGS='-fprofile-use ' \
981         all
982
983 gcc-profile-make:
984         @mkdir -p profdir
985         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
986         EXTRACXXFLAGS='-fprofile-generate=profdir' \
987         EXTRACXXFLAGS+=$(EXTRAPROFILEFLAGS) \
988         EXTRALDFLAGS='-lgcov' \
989         all
990
991 gcc-profile-use:
992         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
993         EXTRACXXFLAGS='-fprofile-use=profdir -fno-peel-loops -fno-tracer' \
994         EXTRACXXFLAGS+=$(EXTRAPROFILEFLAGS) \
995         EXTRALDFLAGS='-lgcov' \
996         all
997
998 icc-profile-make:
999         @mkdir -p profdir
1000         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
1001         EXTRACXXFLAGS='-prof-gen=srcpos -prof_dir ./profdir' \
1002         all
1003
1004 icc-profile-use:
1005         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
1006         EXTRACXXFLAGS='-prof_use -prof_dir ./profdir' \
1007         all
1008
1009 .depend: $(SRCS)
1010         -@$(CXX) $(DEPENDFLAGS) -MM $(SRCS) > $@ 2> /dev/null
1011
1012 ifeq (, $(filter $(MAKECMDGOALS), help strip install clean net objclean profileclean config-sanity))
1013 -include .depend
1014 endif