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