]> git.sesse.net Git - stockfish/blob - src/Makefile
Use exceptions to stop the search
[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-2013 Marco Costalba, Joona Kiiski, Tord Romstad
4 #
5 # Stockfish is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Stockfish is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 ### ==========================================================================
20 ### Section 1. General Configuration
21 ### ==========================================================================
22
23 ### Establish the operating system name
24 UNAME = $(shell uname)
25
26 ### Executable name
27 EXE = stockfish
28
29 ### Installation dir definitions
30 PREFIX = /usr/local
31 # Haiku has a non-standard filesystem layout
32 ifeq ($(UNAME),Haiku)
33         PREFIX=/boot/common
34 endif
35 BINDIR = $(PREFIX)/bin
36
37 ### Built-in benchmark for pgo-builds and signature
38 PGOBENCH = ./$(EXE) bench 32 1 10 default depth
39 SIGNBENCH = ./$(EXE) bench
40
41 ### Object files
42 OBJS = benchmark.o bitbase.o bitboard.o book.o endgame.o evaluate.o main.o \
43         material.o misc.o movegen.o movepick.o notation.o pawns.o position.o \
44         search.o thread.o timeman.o tt.o uci.o ucioption.o
45
46 ### ==========================================================================
47 ### Section 2. High-level Configuration
48 ### ==========================================================================
49 #
50 # flag                --- Comp switch --- Description
51 # ----------------------------------------------------------------------------
52 #
53 # debug = yes/no      --- -DNDEBUG         --- Enable/Disable debug mode
54 # optimize = yes/no   --- (-O3/-fast etc.) --- Enable/Disable optimizations
55 # arch = (name)       --- (-arch)          --- Target architecture
56 # os = (name)         ---                  --- Target operating system
57 # bits = 64/32        --- -DIS_64BIT       --- 64-/32-bit operating system
58 # prefetch = yes/no   --- -DUSE_PREFETCH   --- Use prefetch x86 asm-instruction
59 # bsfq = yes/no       --- -DUSE_BSFQ       --- Use bsfq x86_64 asm-instruction (only
60 #                                              with GCC and ICC 64-bit)
61 # popcnt = yes/no     --- -DUSE_POPCNT     --- Use popcnt x86_64 asm-instruction
62 # sse = yes/no        --- -msse            --- Use Intel Streaming SIMD Extensions
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
69 debug = no
70 optimize = yes
71
72 ### 2.2 Architecture specific
73
74 # General-section
75 ifeq ($(ARCH),general-64)
76         arch = any
77         os = any
78         bits = 64
79         prefetch = no
80         bsfq = no
81         popcnt = no
82         sse = no
83 endif
84
85 ifeq ($(ARCH),general-32)
86         arch = any
87         os = any
88         bits = 32
89         prefetch = no
90         bsfq = no
91         popcnt = no
92         sse = no
93 endif
94
95 # x86-section
96 ifeq ($(ARCH),x86-64)
97         arch = x86_64
98         os = any
99         bits = 64
100         prefetch = yes
101         bsfq = yes
102         popcnt = no
103         sse = yes
104 endif
105
106 ifeq ($(ARCH),x86-64-modern)
107         arch = x86_64
108         os = any
109         bits = 64
110         prefetch = yes
111         bsfq = yes
112         popcnt = yes
113         sse = yes
114 endif
115
116 ifeq ($(ARCH),x86-32)
117         arch = i386
118         os = any
119         bits = 32
120         prefetch = yes
121         bsfq = no
122         popcnt = no
123         sse = yes
124 endif
125
126 ifeq ($(ARCH),x86-32-old)
127         arch = i386
128         os = any
129         bits = 32
130         prefetch = no
131         bsfq = no
132         popcnt = no
133         sse = no
134 endif
135
136 #arm section
137 ifeq ($(ARCH),armv7)
138         arch = armv7
139         os = any
140         bits = 32
141         prefetch = yes
142         bsfq = yes
143         popcnt = no
144         sse = no
145 endif
146
147 # osx-section
148 ifeq ($(ARCH),osx-ppc-64)
149         arch = ppc64
150         os = osx
151         bits = 64
152         prefetch = no
153         bsfq = no
154         popcnt = no
155         sse = no
156 endif
157
158 ifeq ($(ARCH),osx-ppc-32)
159         arch = ppc
160         os = osx
161         bits = 32
162         prefetch = no
163         bsfq = no
164         popcnt = no
165         sse = no
166 endif
167
168 ifeq ($(ARCH),osx-x86-64)
169         arch = x86_64
170         os = osx
171         bits = 64
172         prefetch = yes
173         bsfq = yes
174         popcnt = no
175         sse = yes
176 endif
177
178 ifeq ($(ARCH),osx-x86-32)
179         arch = i386
180         os = osx
181         bits = 32
182         prefetch = yes
183         bsfq = no
184         popcnt = no
185         sse = yes
186 endif
187
188
189 ### ==========================================================================
190 ### Section 3. Low-level configuration
191 ### ==========================================================================
192
193 ### 3.1 Selecting compiler (default = gcc)
194 ifeq ($(COMP),)
195         COMP=gcc
196 endif
197
198 ifeq ($(COMP),mingw)
199         comp=mingw
200         CXX=g++
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 ($(COMP),gcc)
208         comp=gcc
209         CXX=g++
210         profile_prepare = gcc-profile-prepare
211         profile_make = gcc-profile-make
212         profile_use = gcc-profile-use
213         profile_clean = gcc-profile-clean
214 endif
215
216 ifeq ($(COMP),icc)
217         comp=icc
218         CXX=icpc
219         profile_prepare = icc-profile-prepare
220         profile_make = icc-profile-make
221         profile_use = icc-profile-use
222         profile_clean = icc-profile-clean
223 endif
224
225 ifeq ($(COMP),clang)
226         comp=clang
227         CXX=clang++
228         profile_prepare = gcc-profile-prepare
229         profile_make = gcc-profile-make
230         profile_use = gcc-profile-use
231         profile_clean = gcc-profile-clean
232 endif
233
234 ### 3.2 General compiler settings
235 CXXFLAGS = -Wall -Wcast-qual -fno-rtti $(EXTRACXXFLAGS)
236
237 ifeq ($(comp),gcc)
238         CXXFLAGS += -ansi -pedantic -Wno-long-long -Wextra -Wshadow
239 endif
240
241 ifeq ($(comp),mingw)
242         CXXFLAGS += -Wextra -Wshadow
243 endif
244
245 ifeq ($(comp),icc)
246         CXXFLAGS += -wd383,981,1418,1419,1476,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi
247 endif
248
249 ifeq ($(comp),clang)
250         CXXFLAGS += -ansi -pedantic -Wno-long-long -Wextra -Wshadow
251 endif
252
253 ifeq ($(os),osx)
254         CXXFLAGS += -arch $(arch) -mmacosx-version-min=10.0
255 endif
256
257 ### 3.3 General linker settings
258 LDFLAGS = $(EXTRALDFLAGS)
259
260 ifeq ($(comp),mingw)
261         LDFLAGS += -static-libstdc++ -static-libgcc
262 endif
263
264 ### On mingw use Windows threads, otherwise POSIX
265 ifneq ($(comp),mingw)
266         # Haiku has pthreads in its libroot, so only link it in on other platforms
267         ifneq ($(UNAME),Haiku)
268                 LDFLAGS += -lpthread
269         endif
270 endif
271
272 ifeq ($(os),osx)
273         LDFLAGS += -arch $(arch) -mmacosx-version-min=10.0
274 endif
275
276 ### 3.4 Debugging
277 ifeq ($(debug),no)
278         CXXFLAGS += -DNDEBUG
279 else
280         CXXFLAGS += -g
281 endif
282
283 ### 3.5 Optimization
284 ifeq ($(optimize),yes)
285
286         ifeq ($(comp),gcc)
287                 CXXFLAGS += -O3
288
289                 ifeq ($(os),osx)
290                         ifeq ($(arch),i386)
291                                 CXXFLAGS += -mdynamic-no-pic
292                         endif
293                         ifeq ($(arch),x86_64)
294                                 CXXFLAGS += -mdynamic-no-pic
295                         endif
296                 endif
297
298                 ifeq ($(arch),armv7)
299                         CXXFLAGS += -fno-gcse
300                 endif
301         endif
302
303         ifeq ($(comp),mingw)
304                 CXXFLAGS += -O3
305         endif
306
307         ifeq ($(comp),icc)
308                 ifeq ($(os),osx)
309                         CXXFLAGS += -fast -mdynamic-no-pic
310                 else
311                         CXXFLAGS += -O3
312                 endif
313         endif
314
315         ifeq ($(comp),clang)
316                 ### -O4 requires a linker that supports LLVM's LTO
317                 CXXFLAGS += -O3
318
319                 ifeq ($(os),osx)
320                         ifeq ($(arch),i386)
321                                 CXXFLAGS += -mdynamic-no-pic
322                         endif
323                         ifeq ($(arch),x86_64)
324                                 CXXFLAGS += -mdynamic-no-pic
325                         endif
326                 endif
327         endif
328 endif
329
330 ### 3.6. Bits
331 ifeq ($(bits),64)
332         CXXFLAGS += -DIS_64BIT
333 endif
334
335 ### 3.7 prefetch
336 ifeq ($(prefetch),yes)
337         ifeq ($(sse),yes)
338                 CXXFLAGS += -msse
339                 DEPENDFLAGS += -msse
340         endif
341 else
342         CXXFLAGS += -DNO_PREFETCH
343 endif
344
345 ### 3.8 bsfq
346 ifeq ($(bsfq),yes)
347         CXXFLAGS += -DUSE_BSFQ
348 endif
349
350 ### 3.9 popcnt
351 ifeq ($(popcnt),yes)
352         CXXFLAGS += -msse3 -DUSE_POPCNT
353 endif
354
355 ### 3.10 Link Time Optimization, it works since gcc 4.5 but not on mingw.
356 ### This is a mix of compile and link time options because the lto link phase
357 ### needs access to the optimization flags.
358 ifeq ($(comp),gcc)
359         ifeq ($(optimize),yes)
360         ifeq ($(debug),no)
361                 GCC_MAJOR := `$(CXX) -dumpversion | cut -f1 -d.`
362                 GCC_MINOR := `$(CXX) -dumpversion | cut -f2 -d.`
363                 ifeq (1,$(shell expr \( $(GCC_MAJOR) \> 4 \) \| \( $(GCC_MAJOR) \= 4 \& $(GCC_MINOR) \>= 5 \)))
364                         CXXFLAGS += -flto
365                         LDFLAGS += $(CXXFLAGS)
366                 endif
367         endif
368         endif
369 endif
370
371 ### ==========================================================================
372 ### Section 4. Public targets
373 ### ==========================================================================
374
375 help:
376         @echo ""
377         @echo "To compile stockfish, type: "
378         @echo ""
379         @echo "make target ARCH=arch [COMP=comp]"
380         @echo ""
381         @echo "Supported targets:"
382         @echo ""
383         @echo "build                   > Standard build"
384         @echo "signature-build         > Standard build with embedded signature"
385         @echo "profile-build           > PGO build"
386         @echo "signature-profile-build > PGO build with embedded signature"
387         @echo "strip                   > Strip executable"
388         @echo "install                 > Install executable"
389         @echo "clean                   > Clean up"
390         @echo ""
391         @echo "Supported archs:"
392         @echo ""
393         @echo "x86-64                  > x86 64-bit"
394         @echo "x86-64-modern           > x86 64-bit with popcnt support"
395         @echo "x86-32                  > x86 32-bit with SSE support"
396         @echo "x86-32-old              > x86 32-bit fall back for old hardware"
397         @echo "osx-ppc-64              > PPC-Mac OS X 64 bit"
398         @echo "osx-ppc-32              > PPC-Mac OS X 32 bit"
399         @echo "osx-x86-64              > x86-Mac OS X 64 bit"
400         @echo "osx-x86-32              > x86-Mac OS X 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 "Non-standard targets:"
413         @echo ""
414         @echo "make hpux               >  Compile for HP-UX. Compiler = aCC"
415         @echo ""
416         @echo "Examples. If you don't know what to do, you likely want to run: "
417         @echo ""
418         @echo "make build ARCH=x86-64    (This is for 64-bit systems)"
419         @echo "make build ARCH=x86-32    (This is for 32-bit systems)"
420         @echo ""
421
422 .PHONY: build profile-build embed-signature
423 build:
424         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
425         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
426
427 profile-build:
428         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
429         @echo ""
430         @echo "Step 0/4. Preparing for profile build."
431         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_prepare)
432         @echo ""
433         @echo "Step 1/4. Building executable for benchmark ..."
434         @touch *.cpp *.h
435         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_make)
436         @echo ""
437         @echo "Step 2/4. Running benchmark for pgo-build ..."
438         @$(PGOBENCH) > /dev/null
439         @echo ""
440         @echo "Step 3/4. Building final executable ..."
441         @touch *.cpp
442         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
443         @echo ""
444         @echo "Step 4/4. Deleting profile data ..."
445         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_clean)
446
447 embed-signature:
448         @echo "Running benchmark for getting the signature ..."
449         @$(SIGNBENCH) 2>&1 | sed -n 's/Nodes searched  : \(.*\)/\/string Version\/s\/"\\(.*\\)"\/"sig-\1"\//p' > sign.txt
450         @sed -f sign.txt misc.cpp > misc2.cpp
451         @mv misc2.cpp misc.cpp
452         @rm sign.txt
453
454 signature-build: build embed-signature
455         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
456
457 signature-profile-build: build embed-signature profile-build
458
459 strip:
460         strip $(EXE)
461
462 install:
463         -mkdir -p -m 755 $(BINDIR)
464         -cp $(EXE) $(BINDIR)
465         -strip $(BINDIR)/$(EXE)
466
467 clean:
468         $(RM) $(EXE) $(EXE).exe *.o .depend *~ core bench.txt *.gcda
469
470 default:
471         help
472
473 ### ==========================================================================
474 ### Section 5. Private targets
475 ### ==========================================================================
476
477 all: $(EXE) .depend
478
479 config-sanity:
480         @echo ""
481         @echo "Config:"
482         @echo "debug: '$(debug)'"
483         @echo "optimize: '$(optimize)'"
484         @echo "arch: '$(arch)'"
485         @echo "os: '$(os)'"
486         @echo "bits: '$(bits)'"
487         @echo "prefetch: '$(prefetch)'"
488         @echo "bsfq: '$(bsfq)'"
489         @echo "popcnt: '$(popcnt)'"
490         @echo "sse: '$(sse)'"
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 "$(optimize)" = "yes" || test "$(optimize)" = "no"
501         @test "$(arch)" = "any" || test "$(arch)" = "x86_64" || test "$(arch)" = "i386" || \
502          test "$(arch)" = "ppc64" || test "$(arch)" = "ppc" || test "$(arch)" = "armv7"
503         @test "$(os)" = "any" || test "$(os)" = "osx"
504         @test "$(bits)" = "32" || test "$(bits)" = "64"
505         @test "$(prefetch)" = "yes" || test "$(prefetch)" = "no"
506         @test "$(bsfq)" = "yes" || test "$(bsfq)" = "no"
507         @test "$(popcnt)" = "yes" || test "$(popcnt)" = "no"
508         @test "$(sse)" = "yes" || test "$(sse)" = "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 gcc-profile-prepare:
515         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) gcc-profile-clean
516
517 gcc-profile-make:
518         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
519         EXTRACXXFLAGS='-fprofile-generate' \
520         EXTRALDFLAGS='-lgcov' \
521         all
522
523 gcc-profile-use:
524         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
525         EXTRACXXFLAGS='-fprofile-use' \
526         EXTRALDFLAGS='-lgcov' \
527         all
528
529 gcc-profile-clean:
530         @rm -rf *.gcda *.gcno bench.txt
531
532 icc-profile-prepare:
533         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) icc-profile-clean
534         @mkdir profdir
535
536 icc-profile-make:
537         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
538         EXTRACXXFLAGS='-prof-gen=srcpos -prof_dir ./profdir' \
539         all
540
541 icc-profile-use:
542         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
543         EXTRACXXFLAGS='-prof_use -prof_dir ./profdir' \
544         all
545
546 icc-profile-clean:
547         @rm -rf profdir bench.txt
548
549 .depend:
550         -@$(CXX) $(DEPENDFLAGS) -MM $(OBJS:.o=.cpp) > $@ 2> /dev/null
551
552 -include .depend
553
554
555 ### ==========================================================================
556 ### Section 6. Non-standard targets
557 ### ==========================================================================
558
559 hpux:
560         $(MAKE) \
561         CXX='/opt/aCC/bin/aCC -AA +hpxstd98 -mt +O3 -DNDEBUG -DNO_PREFETCH' \
562         CXXFLAGS="" \
563         LDFLAGS="" \
564         all
565