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