]> git.sesse.net Git - stockfish/blob - src/Makefile
rename shift variables.
[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-2018 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 ### Establish the operating system name
25 KERNEL = $(shell uname -s)
26 ifeq ($(KERNEL),Linux)
27         OS = $(shell uname -o)
28 endif
29
30 ### Executable name
31 EXE = stockfish
32
33 ### Installation dir definitions
34 PREFIX = /usr/local
35 BINDIR = $(PREFIX)/bin
36
37 ### Built-in benchmark for pgo-builds
38 PGOBENCH = ./$(EXE) bench
39
40 ### Object files
41 OBJS = benchmark.o bitbase.o bitboard.o endgame.o evaluate.o main.o \
42         material.o misc.o movegen.o movepick.o pawns.o position.o psqt.o \
43         search.o thread.o timeman.o tt.o uci.o ucioption.o syzygy/tbprobe.o
44
45 ### ==========================================================================
46 ### Section 2. High-level Configuration
47 ### ==========================================================================
48 #
49 # flag                --- Comp switch --- Description
50 # ----------------------------------------------------------------------------
51 #
52 # debug = yes/no      --- -DNDEBUG         --- Enable/Disable debug mode
53 # sanitize = undefined/thread/no (-fsanitize )
54 #                     --- ( undefined )    --- enable undefined behavior checks
55 #                     --- ( thread    )    --- enable threading error  checks
56 # optimize = yes/no   --- (-O3/-fast etc.) --- Enable/Disable optimizations
57 # arch = (name)       --- (-arch)          --- Target architecture
58 # bits = 64/32        --- -DIS_64BIT       --- 64-/32-bit operating system
59 # prefetch = yes/no   --- -DUSE_PREFETCH   --- Use prefetch asm-instruction
60 # popcnt = yes/no     --- -DUSE_POPCNT     --- Use popcnt asm-instruction
61 # sse = yes/no        --- -msse            --- Use Intel Streaming SIMD Extensions
62 # pext = yes/no       --- -DUSE_PEXT       --- Use pext x86_64 asm-instruction
63 #
64 # Note that Makefile is space sensitive, so when adding new architectures
65 # or modifying existing flags, you have to make sure there are no extra spaces
66 # at the end of the line for flag values.
67
68 ### 2.1. General and architecture defaults
69 optimize = yes
70 debug = no
71 sanitize = no
72 bits = 32
73 prefetch = no
74 popcnt = no
75 sse = no
76 pext = no
77
78 ### 2.2 Architecture specific
79
80 ifeq ($(ARCH),general-32)
81         arch = any
82 endif
83
84 ifeq ($(ARCH),x86-32-old)
85         arch = i386
86 endif
87
88 ifeq ($(ARCH),x86-32)
89         arch = i386
90         prefetch = yes
91         sse = yes
92 endif
93
94 ifeq ($(ARCH),general-64)
95         arch = any
96         bits = 64
97 endif
98
99 ifeq ($(ARCH),x86-64)
100         arch = x86_64
101         bits = 64
102         prefetch = yes
103         sse = yes
104 endif
105
106 ifeq ($(ARCH),x86-64-modern)
107         arch = x86_64
108         bits = 64
109         prefetch = yes
110         popcnt = yes
111         sse = yes
112 endif
113
114 ifeq ($(ARCH),x86-64-bmi2)
115         arch = x86_64
116         bits = 64
117         prefetch = yes
118         popcnt = yes
119         sse = yes
120         pext = yes
121 endif
122
123 ifeq ($(ARCH),armv7)
124         arch = armv7
125         prefetch = yes
126 endif
127
128 ifeq ($(ARCH),ppc-32)
129         arch = ppc
130 endif
131
132 ifeq ($(ARCH),ppc-64)
133         arch = ppc64
134         bits = 64
135 endif
136
137
138 ### ==========================================================================
139 ### Section 3. Low-level configuration
140 ### ==========================================================================
141
142 ### 3.1 Selecting compiler (default = gcc)
143
144 CXXFLAGS += -Wall -Wcast-qual -fno-exceptions -std=c++11 $(EXTRACXXFLAGS)
145 DEPENDFLAGS += -std=c++11
146 LDFLAGS += $(EXTRALDFLAGS)
147
148 ifeq ($(COMP),)
149         COMP=gcc
150 endif
151
152 ifeq ($(COMP),gcc)
153         comp=gcc
154         CXX=g++
155         CXXFLAGS += -pedantic -Wextra -Wshadow
156
157         ifeq ($(ARCH),armv7)
158                 ifeq ($(OS),Android)
159                         CXXFLAGS += -m$(bits)
160                         LDFLAGS += -m$(bits)
161                 endif
162         else
163                 CXXFLAGS += -m$(bits)
164                 LDFLAGS += -m$(bits)
165         endif
166
167         ifneq ($(KERNEL),Darwin)
168            LDFLAGS += -Wl,--no-as-needed
169         endif
170 endif
171
172 ifeq ($(COMP),mingw)
173         comp=mingw
174
175         ifeq ($(KERNEL),Linux)
176                 ifeq ($(bits),64)
177                         ifeq ($(shell which x86_64-w64-mingw32-c++-posix),)
178                                 CXX=x86_64-w64-mingw32-c++
179                         else
180                                 CXX=x86_64-w64-mingw32-c++-posix
181                         endif
182                 else
183                         ifeq ($(shell which i686-w64-mingw32-c++-posix),)
184                                 CXX=i686-w64-mingw32-c++
185                         else
186                                 CXX=i686-w64-mingw32-c++-posix
187                         endif
188                 endif
189         else
190                 CXX=g++
191         endif
192
193         CXXFLAGS += -Wextra -Wshadow
194         LDFLAGS += -static
195 endif
196
197 ifeq ($(COMP),icc)
198         comp=icc
199         CXX=icpc
200         CXXFLAGS += -diag-disable 1476,10120 -Wcheck -Wabi -Wdeprecated -strict-ansi
201 endif
202
203 ifeq ($(COMP),clang)
204         comp=clang
205         CXX=clang++
206         CXXFLAGS += -pedantic -Wextra -Wshadow
207 ifneq ($(KERNEL),Darwin)
208 ifneq ($(KERNEL),OpenBSD)
209         LDFLAGS += -latomic
210 endif
211 endif
212
213         ifeq ($(ARCH),armv7)
214                 ifeq ($(OS),Android)
215                         CXXFLAGS += -m$(bits)
216                         LDFLAGS += -m$(bits)
217                 endif
218         else
219                 CXXFLAGS += -m$(bits)
220                 LDFLAGS += -m$(bits)
221         endif
222 endif
223
224 ifeq ($(comp),icc)
225         profile_make = icc-profile-make
226         profile_use = icc-profile-use
227 else
228 ifeq ($(comp),clang)
229         profile_make = clang-profile-make
230         profile_use = clang-profile-use
231 else
232         profile_make = gcc-profile-make
233         profile_use = gcc-profile-use
234 endif
235 endif
236
237 ifeq ($(KERNEL),Darwin)
238         CXXFLAGS += -arch $(arch) -mmacosx-version-min=10.9
239         LDFLAGS += -arch $(arch) -mmacosx-version-min=10.9
240 endif
241
242 ### Travis CI script uses COMPILER to overwrite CXX
243 ifdef COMPILER
244         COMPCXX=$(COMPILER)
245 endif
246
247 ### Allow overwriting CXX from command line
248 ifdef COMPCXX
249         CXX=$(COMPCXX)
250 endif
251
252 ### On mingw use Windows threads, otherwise POSIX
253 ifneq ($(comp),mingw)
254         # On Android Bionic's C library comes with its own pthread implementation bundled in
255         ifneq ($(OS),Android)
256                 # Haiku has pthreads in its libroot, so only link it in on other platforms
257                 ifneq ($(KERNEL),Haiku)
258                         LDFLAGS += -lpthread
259                 endif
260         endif
261 endif
262
263 ### 3.2.1 Debugging
264 ifeq ($(debug),no)
265         CXXFLAGS += -DNDEBUG
266 else
267         CXXFLAGS += -g
268 endif
269
270 ### 3.2.2 Debugging with undefined behavior sanitizers
271 ifneq ($(sanitize),no)
272         CXXFLAGS += -g3 -fsanitize=$(sanitize) -fuse-ld=gold
273         LDFLAGS += -fsanitize=$(sanitize) -fuse-ld=gold
274 endif
275
276 ### 3.3 Optimization
277 ifeq ($(optimize),yes)
278
279         CXXFLAGS += -O3
280
281         ifeq ($(comp),gcc)
282
283                 ifeq ($(KERNEL),Darwin)
284                         ifeq ($(arch),i386)
285                                 CXXFLAGS += -mdynamic-no-pic
286                         endif
287                         ifeq ($(arch),x86_64)
288                                 CXXFLAGS += -mdynamic-no-pic
289                         endif
290                 endif
291
292                 ifeq ($(OS), Android)
293                         CXXFLAGS += -fno-gcse -mthumb -march=armv7-a -mfloat-abi=softfp
294                 endif
295         endif
296
297         ifeq ($(comp),icc)
298                 ifeq ($(KERNEL),Darwin)
299                         CXXFLAGS += -mdynamic-no-pic
300                 endif
301         endif
302
303         ifeq ($(comp),clang)
304                 ifeq ($(KERNEL),Darwin)
305                         ifeq ($(arch),i386)
306                                 CXXFLAGS += -mdynamic-no-pic
307                         endif
308                         ifeq ($(arch),x86_64)
309                                 CXXFLAGS += -mdynamic-no-pic
310                         endif
311                 endif
312         endif
313 endif
314
315 ### 3.4 Bits
316 ifeq ($(bits),64)
317         CXXFLAGS += -DIS_64BIT
318 endif
319
320 ### 3.5 prefetch
321 ifeq ($(prefetch),yes)
322         ifeq ($(sse),yes)
323                 CXXFLAGS += -msse
324                 DEPENDFLAGS += -msse
325         endif
326 else
327         CXXFLAGS += -DNO_PREFETCH
328 endif
329
330 ### 3.6 popcnt
331 ifeq ($(popcnt),yes)
332         ifeq ($(comp),icc)
333                 CXXFLAGS += -msse3 -DUSE_POPCNT
334         else
335                 CXXFLAGS += -msse3 -mpopcnt -DUSE_POPCNT
336         endif
337 endif
338
339 ### 3.7 pext
340 ifeq ($(pext),yes)
341         CXXFLAGS += -DUSE_PEXT
342         ifeq ($(comp),$(filter $(comp),gcc clang mingw))
343                 CXXFLAGS += -mbmi2
344         endif
345 endif
346
347 ### 3.8 Link Time Optimization, it works since gcc 4.5 but not on mingw under Windows.
348 ### This is a mix of compile and link time options because the lto link phase
349 ### needs access to the optimization flags.
350 ifeq ($(optimize),yes)
351 ifeq ($(debug), no)
352         ifeq ($(comp),$(filter $(comp),gcc clang))
353                 CXXFLAGS += -flto
354                 LDFLAGS += $(CXXFLAGS)
355         endif
356
357         ifeq ($(comp),mingw)
358         ifeq ($(KERNEL),Linux)
359                 CXXFLAGS += -flto
360                 LDFLAGS += $(CXXFLAGS)
361         endif
362         endif
363 endif
364 endif
365
366 ### 3.9 Android 5 can only run position independent executables. Note that this
367 ### breaks Android 4.0 and earlier.
368 ifeq ($(OS), Android)
369         CXXFLAGS += -fPIE
370         LDFLAGS += -fPIE -pie
371 endif
372
373
374 ### ==========================================================================
375 ### Section 4. Public targets
376 ### ==========================================================================
377
378 help:
379         @echo ""
380         @echo "To compile stockfish, type: "
381         @echo ""
382         @echo "make target ARCH=arch [COMP=compiler] [COMPCXX=cxx]"
383         @echo ""
384         @echo "Supported targets:"
385         @echo ""
386         @echo "build                   > Standard build"
387         @echo "profile-build           > PGO build"
388         @echo "strip                   > Strip executable"
389         @echo "install                 > Install executable"
390         @echo "clean                   > Clean up"
391         @echo ""
392         @echo "Supported archs:"
393         @echo ""
394         @echo "x86-64                  > x86 64-bit"
395         @echo "x86-64-modern           > x86 64-bit with popcnt support"
396         @echo "x86-64-bmi2             > x86 64-bit with pext support"
397         @echo "x86-32                  > x86 32-bit with SSE support"
398         @echo "x86-32-old              > x86 32-bit fall back for old hardware"
399         @echo "ppc-64                  > PPC 64-bit"
400         @echo "ppc-32                  > PPC 32-bit"
401         @echo "armv7                   > ARMv7 32-bit"
402         @echo "general-64              > unspecified 64-bit"
403         @echo "general-32              > unspecified 32-bit"
404         @echo ""
405         @echo "Supported compilers:"
406         @echo ""
407         @echo "gcc                     > Gnu compiler (default)"
408         @echo "mingw                   > Gnu compiler with MinGW under Windows"
409         @echo "clang                   > LLVM Clang compiler"
410         @echo "icc                     > Intel compiler"
411         @echo ""
412         @echo "Simple examples. If you don't know what to do, you likely want to run: "
413         @echo ""
414         @echo "make build ARCH=x86-64    (This is for 64-bit systems)"
415         @echo "make build ARCH=x86-32    (This is for 32-bit systems)"
416         @echo ""
417         @echo "Advanced examples, for experienced users: "
418         @echo ""
419         @echo "make build ARCH=x86-64 COMP=clang"
420         @echo "make profile-build ARCH=x86-64-modern COMP=gcc COMPCXX=g++-4.8"
421         @echo ""
422
423
424 .PHONY: help build profile-build strip install clean objclean profileclean help \
425         config-sanity icc-profile-use icc-profile-make gcc-profile-use gcc-profile-make \
426         clang-profile-use clang-profile-make
427
428 build: config-sanity
429         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
430
431 profile-build: config-sanity objclean profileclean
432         @echo ""
433         @echo "Step 1/4. Building instrumented executable ..."
434         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_make)
435         @echo ""
436         @echo "Step 2/4. Running benchmark for pgo-build ..."
437         $(PGOBENCH) > /dev/null
438         @echo ""
439         @echo "Step 3/4. Building optimized executable ..."
440         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) objclean
441         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
442         @echo ""
443         @echo "Step 4/4. Deleting profile data ..."
444         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) profileclean
445
446 strip:
447         strip $(EXE)
448
449 install:
450         -mkdir -p -m 755 $(BINDIR)
451         -cp $(EXE) $(BINDIR)
452         -strip $(BINDIR)/$(EXE)
453
454 #clean all
455 clean: objclean profileclean
456         @rm -f .depend *~ core
457
458 # clean binaries and objects
459 objclean:
460         @rm -f $(EXE) $(EXE).exe *.o ./syzygy/*.o
461
462 # clean auxiliary profiling files
463 profileclean:
464         @rm -rf profdir
465         @rm -f bench.txt *.gcda ./syzygy/*.gcda *.gcno ./syzygy/*.gcno
466         @rm -f stockfish.profdata *.profraw
467
468 default:
469         help
470
471 ### ==========================================================================
472 ### Section 5. Private targets
473 ### ==========================================================================
474
475 all: $(EXE) .depend
476
477 config-sanity:
478         @echo ""
479         @echo "Config:"
480         @echo "debug: '$(debug)'"
481         @echo "sanitize: '$(sanitize)'"
482         @echo "optimize: '$(optimize)'"
483         @echo "arch: '$(arch)'"
484         @echo "bits: '$(bits)'"
485         @echo "kernel: '$(KERNEL)'"
486         @echo "os: '$(OS)'"
487         @echo "prefetch: '$(prefetch)'"
488         @echo "popcnt: '$(popcnt)'"
489         @echo "sse: '$(sse)'"
490         @echo "pext: '$(pext)'"
491         @echo ""
492         @echo "Flags:"
493         @echo "CXX: $(CXX)"
494         @echo "CXXFLAGS: $(CXXFLAGS)"
495         @echo "LDFLAGS: $(LDFLAGS)"
496         @echo ""
497         @echo "Testing config sanity. If this fails, try 'make help' ..."
498         @echo ""
499         @test "$(debug)" = "yes" || test "$(debug)" = "no"
500         @test "$(sanitize)" = "undefined" || test "$(sanitize)" = "thread" || test "$(sanitize)" = "no"
501         @test "$(optimize)" = "yes" || test "$(optimize)" = "no"
502         @test "$(arch)" = "any" || test "$(arch)" = "x86_64" || test "$(arch)" = "i386" || \
503          test "$(arch)" = "ppc64" || test "$(arch)" = "ppc" || test "$(arch)" = "armv7"
504         @test "$(bits)" = "32" || test "$(bits)" = "64"
505         @test "$(prefetch)" = "yes" || test "$(prefetch)" = "no"
506         @test "$(popcnt)" = "yes" || test "$(popcnt)" = "no"
507         @test "$(sse)" = "yes" || test "$(sse)" = "no"
508         @test "$(pext)" = "yes" || test "$(pext)" = "no"
509         @test "$(comp)" = "gcc" || test "$(comp)" = "icc" || test "$(comp)" = "mingw" || test "$(comp)" = "clang"
510
511 $(EXE): $(OBJS)
512         $(CXX) -o $@ $(OBJS) $(LDFLAGS)
513
514 clang-profile-make:
515         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
516         EXTRACXXFLAGS='-fprofile-instr-generate ' \
517         EXTRALDFLAGS=' -fprofile-instr-generate' \
518         all
519
520 clang-profile-use:
521         llvm-profdata merge -output=stockfish.profdata *.profraw
522         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
523         EXTRACXXFLAGS='-fprofile-instr-use=stockfish.profdata' \
524         EXTRALDFLAGS='-fprofile-use ' \
525         all
526
527 gcc-profile-make:
528         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
529         EXTRACXXFLAGS='-fprofile-generate' \
530         EXTRALDFLAGS='-lgcov' \
531         all
532
533 gcc-profile-use:
534         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
535         EXTRACXXFLAGS='-fprofile-use -fno-peel-loops -fno-tracer' \
536         EXTRALDFLAGS='-lgcov' \
537         all
538
539 icc-profile-make:
540         @mkdir -p profdir
541         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
542         EXTRACXXFLAGS='-prof-gen=srcpos -prof_dir ./profdir' \
543         all
544
545 icc-profile-use:
546         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
547         EXTRACXXFLAGS='-prof_use -prof_dir ./profdir' \
548         all
549
550 .depend:
551         -@$(CXX) $(DEPENDFLAGS) -MM $(OBJS:.o=.cpp) > $@ 2> /dev/null
552
553 -include .depend
554