]> git.sesse.net Git - stockfish/blob - src/Makefile
Triviality in move_gives_check()
[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-2012 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
38 PGOBENCH = ./$(EXE) bench 32 1 10 default depth
39
40 ### Object files
41 OBJS = benchmark.o bitbase.o bitboard.o book.o endgame.o evaluate.o main.o \
42         material.o misc.o movegen.o movepick.o notation.o pawns.o position.o \
43         search.o thread.o timeman.o tt.o uci.o ucioption.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 # optimize = yes/no   --- (-O3/-fast etc.) --- Enable/Disable optimizations
54 # arch = (name)       --- (-arch)          --- Target architecture
55 # os = (name)         ---                  --- Target operating system
56 # bits = 64/32        --- -DIS_64BIT       --- 64-/32-bit operating system
57 # prefetch = yes/no   --- -DUSE_PREFETCH   --- Use prefetch x86 asm-instruction
58 # bsfq = yes/no       --- -DUSE_BSFQ       --- Use bsfq x86_64 asm-instruction (only
59 #                                              with GCC and ICC 64-bit)
60 # popcnt = yes/no     --- -DUSE_POPCNT     --- Use popcnt x86_64 asm-instruction
61 # sse = yes/no        --- -msse            --- Use Intel Streaming SIMD Extensions
62 #
63 # Note that Makefile is space sensitive, so when adding new architectures
64 # or modifying existing flags, you have to make sure there are no extra spaces
65 # at the end of the line for flag values.
66
67 ### 2.1. General
68 debug = no
69 optimize = yes
70
71 ### 2.2 Architecture specific
72
73 # General-section
74 ifeq ($(ARCH),general-64)
75         arch = any
76         os = any
77         bits = 64
78         prefetch = no
79         bsfq = no
80         popcnt = no
81         sse = no
82 endif
83
84 ifeq ($(ARCH),general-32)
85         arch = any
86         os = any
87         bits = 32
88         prefetch = no
89         bsfq = no
90         popcnt = no
91         sse = no
92 endif
93
94 # x86-section
95 ifeq ($(ARCH),x86-64)
96         arch = x86_64
97         os = any
98         bits = 64
99         prefetch = yes
100         bsfq = yes
101         popcnt = no
102         sse = yes
103 endif
104
105 ifeq ($(ARCH),x86-64-modern)
106         arch = x86_64
107         os = any
108         bits = 64
109         prefetch = yes
110         bsfq = yes
111         popcnt = yes
112         sse = yes
113 endif
114
115 ifeq ($(ARCH),x86-32)
116         arch = i386
117         os = any
118         bits = 32
119         prefetch = yes
120         bsfq = no
121         popcnt = no
122         sse = yes
123 endif
124
125 ifeq ($(ARCH),x86-32-old)
126         arch = i386
127         os = any
128         bits = 32
129         prefetch = no
130         bsfq = no
131         popcnt = no
132         sse = no
133 endif
134
135 #arm section
136 ifeq ($(ARCH),armv7)
137         arch = armv7
138         os = any
139         bits = 32
140         prefetch = yes
141         bsfq = yes
142         popcnt = no
143         sse = no
144 endif
145
146 # osx-section
147 ifeq ($(ARCH),osx-ppc-64)
148         arch = ppc64
149         os = osx
150         bits = 64
151         prefetch = no
152         bsfq = no
153         popcnt = no
154         sse = no
155 endif
156
157 ifeq ($(ARCH),osx-ppc-32)
158         arch = ppc
159         os = osx
160         bits = 32
161         prefetch = no
162         bsfq = no
163         popcnt = no
164         sse = no
165 endif
166
167 ifeq ($(ARCH),osx-x86-64)
168         arch = x86_64
169         os = osx
170         bits = 64
171         prefetch = yes
172         bsfq = yes
173         popcnt = no
174         sse = yes
175 endif
176
177 ifeq ($(ARCH),osx-x86-32)
178         arch = i386
179         os = osx
180         bits = 32
181         prefetch = yes
182         bsfq = no
183         popcnt = no
184         sse = yes
185 endif
186
187
188 ### ==========================================================================
189 ### Section 3. Low-level configuration
190 ### ==========================================================================
191
192 ### 3.1 Selecting compiler (default = gcc)
193 ifeq ($(COMP),)
194         COMP=gcc
195 endif
196
197 ifeq ($(COMP),mingw)
198         comp=mingw
199         CXX=g++
200         profile_prepare = gcc-profile-prepare
201         profile_make = gcc-profile-make
202         profile_use = gcc-profile-use
203         profile_clean = gcc-profile-clean
204 endif
205
206 ifeq ($(COMP),gcc)
207         comp=gcc
208         CXX=g++
209         profile_prepare = gcc-profile-prepare
210         profile_make = gcc-profile-make
211         profile_use = gcc-profile-use
212         profile_clean = gcc-profile-clean
213 endif
214
215 ifeq ($(COMP),icc)
216         comp=icc
217         CXX=icpc
218         profile_prepare = icc-profile-prepare
219         profile_make = icc-profile-make
220         profile_use = icc-profile-use
221         profile_clean = icc-profile-clean
222 endif
223
224 ifeq ($(COMP),clang)
225         comp=clang
226         CXX=clang++
227         profile_prepare = gcc-profile-prepare
228         profile_make = gcc-profile-make
229         profile_use = gcc-profile-use
230         profile_clean = gcc-profile-clean
231 endif
232
233 ### 3.2 General compiler settings
234 CXXFLAGS = -g -Wall -Wcast-qual -fno-exceptions -fno-rtti $(EXTRACXXFLAGS)
235
236 ifeq ($(comp),gcc)
237         CXXFLAGS += -ansi -pedantic -Wno-long-long -Wextra -Wshadow
238 endif
239
240 ifeq ($(comp),mingw)
241         CXXFLAGS += -Wextra -Wshadow
242 endif
243
244 ifeq ($(comp),icc)
245         CXXFLAGS += -wd383,981,1418,1419,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi
246 endif
247
248 ifeq ($(comp),clang)
249         CXXFLAGS += -ansi -pedantic -Wno-long-long -Wextra -Wshadow
250 endif
251
252 ifeq ($(os),osx)
253         CXXFLAGS += -arch $(arch) -mmacosx-version-min=10.0
254 endif
255
256 ### 3.3 General linker settings
257 LDFLAGS = $(EXTRALDFLAGS)
258
259 ### On mingw use Windows threads, otherwise POSIX
260 ifneq ($(comp),mingw)
261         # Haiku has pthreads in its libroot, so only link it in on other platforms
262         ifneq ($(UNAME),Haiku)
263                 LDFLAGS += -lpthread
264         endif
265 endif
266
267 ifeq ($(os),osx)
268         LDFLAGS += -arch $(arch) -mmacosx-version-min=10.0
269 endif
270
271 ### 3.4 Debugging
272 ifeq ($(debug),no)
273         CXXFLAGS += -DNDEBUG
274 endif
275
276 ### 3.5 Optimization
277 ifeq ($(optimize),yes)
278
279         ifeq ($(comp),gcc)
280                 CXXFLAGS += -O3
281
282                 ifeq ($(os),osx)
283                         ifeq ($(arch),i386)
284                                 CXXFLAGS += -mdynamic-no-pic
285                         endif
286                         ifeq ($(arch),x86_64)
287                                 CXXFLAGS += -mdynamic-no-pic
288                         endif
289                 endif
290
291                 ifeq ($(arch),armv7)
292                         CXXFLAGS += -fno-gcse
293                 endif
294         endif
295
296         ifeq ($(comp),mingw)
297                 CXXFLAGS += -O3
298         endif
299
300         ifeq ($(comp),icc)
301                 ifeq ($(os),osx)
302                         CXXFLAGS += -fast -mdynamic-no-pic
303                 else
304                         CXXFLAGS += -O3
305                 endif
306         endif
307
308         ifeq ($(comp),clang)
309                 ### -O4 requires a linker that supports LLVM's LTO
310                 CXXFLAGS += -O3
311
312                 ifeq ($(os),osx)
313                         ifeq ($(arch),i386)
314                                 CXXFLAGS += -mdynamic-no-pic
315                         endif
316                         ifeq ($(arch),x86_64)
317                                 CXXFLAGS += -mdynamic-no-pic
318                         endif
319                 endif
320         endif
321 endif
322
323 ### 3.6. Bits
324 ifeq ($(bits),64)
325         CXXFLAGS += -DIS_64BIT
326 endif
327
328 ### 3.7 prefetch
329 ifeq ($(prefetch),yes)
330         ifeq ($(sse),yes)
331                 CXXFLAGS += -msse
332                 DEPENDFLAGS += -msse
333         endif
334 else
335         CXXFLAGS += -DNO_PREFETCH
336 endif
337
338 ### 3.8 bsfq
339 ifeq ($(bsfq),yes)
340         CXXFLAGS += -DUSE_BSFQ
341 endif
342
343 ### 3.9 popcnt
344 ifeq ($(popcnt),yes)
345         CXXFLAGS += -msse3 -DUSE_POPCNT
346 endif
347
348 ### 3.10 Link Time Optimization, it works since gcc 4.5 but not on mingw.
349 ### This is a mix of compile and link time options because the lto link phase
350 ### needs access to the optimization flags.
351 ifeq ($(comp),gcc)
352         ifeq ($(optimize),yes)
353                 GCC_MAJOR := `$(CXX) -dumpversion | cut -f1 -d.`
354                 GCC_MINOR := `$(CXX) -dumpversion | cut -f2 -d.`
355                 ifeq (1,$(shell expr \( $(GCC_MAJOR) \> 4 \) \| \( $(GCC_MAJOR) \= 4 \& $(GCC_MINOR) \>= 5 \)))
356                         CXXFLAGS += -flto
357                         LDFLAGS += $(CXXFLAGS)
358                 endif
359         endif
360 endif
361
362 ### ==========================================================================
363 ### Section 4. Public targets
364 ### ==========================================================================
365
366 help:
367         @echo ""
368         @echo "To compile stockfish, type: "
369         @echo ""
370         @echo "make target ARCH=arch [COMP=comp]"
371         @echo ""
372         @echo "Supported targets:"
373         @echo ""
374         @echo "build                > Build unoptimized version"
375         @echo "profile-build        > Build PGO-optimized version"
376         @echo "strip                > Strip executable"
377         @echo "install              > Install executable"
378         @echo "clean                > Clean up"
379         @echo "testrun              > Make sample run"
380         @echo ""
381         @echo "Supported archs:"
382         @echo ""
383         @echo "x86-64               > x86 64-bit"
384         @echo "x86-64-modern        > x86 64-bit with runtime support for popcnt instruction"
385         @echo "x86-32               > x86 32-bit excluding old hardware without SSE-support"
386         @echo "x86-32-old           > x86 32-bit including also very old hardware"
387         @echo "osx-ppc-64           > PPC-Mac OS X 64 bit"
388         @echo "osx-ppc-32           > PPC-Mac OS X 32 bit"
389         @echo "osx-x86-64           > x86-Mac OS X 64 bit"
390         @echo "osx-x86-32           > x86-Mac OS X 32 bit"
391         @echo "armv7                > ARMv7 32 bit"
392         @echo "general-64           > unspecified 64-bit"
393         @echo "general-32           > unspecified 32-bit"
394         @echo ""
395         @echo "Supported comps:"
396         @echo ""
397         @echo "gcc                  > Gnu compiler (default)"
398         @echo "icc                  > Intel compiler"
399         @echo "mingw                > Gnu compiler with MinGW under Windows"
400         @echo "clang                > LLVM Clang compiler"
401         @echo ""
402         @echo "Non-standard targets:"
403         @echo ""
404         @echo "make hpux           >  Compile for HP-UX. Compiler = aCC"
405         @echo ""
406         @echo "Examples. If you don't know what to do, you likely want to run: "
407         @echo ""
408         @echo "make profile-build ARCH=x86-64    (This is for 64-bit systems)"
409         @echo "make profile-build ARCH=x86-32    (This is for 32-bit systems)"
410         @echo ""
411
412 build:
413         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
414         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
415
416 profile-build:
417         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
418         @echo ""
419         @echo "Step 0/4. Preparing for profile build."
420         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_prepare)
421         @echo ""
422         @echo "Step 1/4. Building executable for benchmark ..."
423         @touch *.cpp *.h
424         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_make)
425         @echo ""
426         @echo "Step 2/4. Running benchmark for pgo-build ..."
427         @$(PGOBENCH) > /dev/null
428         @echo ""
429         @echo "Step 3/4. Building final executable ..."
430         @touch *.cpp
431         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
432         @echo ""
433         @echo "Step 4/4. Deleting profile data ..."
434         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_clean)
435
436 strip:
437         strip $(EXE)
438
439 install:
440         -mkdir -p -m 755 $(BINDIR)
441         -cp $(EXE) $(BINDIR)
442         -strip $(BINDIR)/$(EXE)
443
444 clean:
445         $(RM) $(EXE) $(EXE).exe *.o .depend *~ core bench.txt *.gcda
446
447 testrun:
448         @$(PGOBENCH)
449
450 default:
451         help
452
453 ### ==========================================================================
454 ### Section 5. Private targets
455 ### ==========================================================================
456
457 all: $(EXE) .depend
458
459 config-sanity:
460         @echo ""
461         @echo "Config:"
462         @echo "debug: '$(debug)'"
463         @echo "optimize: '$(optimize)'"
464         @echo "arch: '$(arch)'"
465         @echo "os: '$(os)'"
466         @echo "bits: '$(bits)'"
467         @echo "prefetch: '$(prefetch)'"
468         @echo "bsfq: '$(bsfq)'"
469         @echo "popcnt: '$(popcnt)'"
470         @echo "sse: '$(sse)'"
471         @echo ""
472         @echo "Flags:"
473         @echo "CXX: $(CXX)"
474         @echo "CXXFLAGS: $(CXXFLAGS)"
475         @echo "LDFLAGS: $(LDFLAGS)"
476         @echo ""
477         @echo "Testing config sanity. If this fails, try 'make help' ..."
478         @echo ""
479         @test "$(debug)" = "yes" || test "$(debug)" = "no"
480         @test "$(optimize)" = "yes" || test "$(optimize)" = "no"
481         @test "$(arch)" = "any" || test "$(arch)" = "x86_64" || test "$(arch)" = "i386" || \
482          test "$(arch)" = "ppc64" || test "$(arch)" = "ppc" || test "$(arch)" = "armv7"
483         @test "$(os)" = "any" || test "$(os)" = "osx"
484         @test "$(bits)" = "32" || test "$(bits)" = "64"
485         @test "$(prefetch)" = "yes" || test "$(prefetch)" = "no"
486         @test "$(bsfq)" = "yes" || test "$(bsfq)" = "no"
487         @test "$(popcnt)" = "yes" || test "$(popcnt)" = "no"
488         @test "$(sse)" = "yes" || test "$(sse)" = "no"
489         @test "$(comp)" = "gcc" || test "$(comp)" = "icc" || test "$(comp)" = "mingw" || test "$(comp)" = "clang"
490
491 $(EXE): $(OBJS)
492         $(CXX) -o $@ $(OBJS) $(LDFLAGS)
493
494 gcc-profile-prepare:
495         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) gcc-profile-clean
496
497 gcc-profile-make:
498         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
499         EXTRACXXFLAGS='-fprofile-generate' \
500         EXTRALDFLAGS='-lgcov' \
501         all
502
503 gcc-profile-use:
504         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
505         EXTRACXXFLAGS='-fprofile-use' \
506         EXTRALDFLAGS='-lgcov' \
507         all
508
509 gcc-profile-clean:
510         @rm -rf *.gcda *.gcno bench.txt
511
512 icc-profile-prepare:
513         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) icc-profile-clean
514         @mkdir profdir
515
516 icc-profile-make:
517         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
518         EXTRACXXFLAGS='-prof-gen=srcpos -prof_dir ./profdir' \
519         all
520
521 icc-profile-use:
522         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
523         EXTRACXXFLAGS='-prof_use -prof_dir ./profdir' \
524         all
525
526 icc-profile-clean:
527         @rm -rf profdir bench.txt
528
529 .depend:
530         -@$(CXX) $(DEPENDFLAGS) -MM $(OBJS:.o=.cpp) > $@ 2> /dev/null
531
532 -include .depend
533
534
535 ### ==========================================================================
536 ### Section 6. Non-standard targets
537 ### ==========================================================================
538
539 hpux:
540         $(MAKE) \
541         CXX='/opt/aCC/bin/aCC -AA +hpxstd98 -mt +O3 -DNDEBUG -DNO_PREFETCH' \
542         CXXFLAGS="" \
543         LDFLAGS="" \
544         all
545