]> git.sesse.net Git - stockfish/blob - src/Makefile
Fix a shadowed variable warning under icc
[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-2010 Marco Costalba, Joona Kiiski, Tord Romstad
4 #
5 # This file is part of Stockfish.
6 #
7 # Stockfish is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Stockfish is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20
21 ### ==========================================================================
22 ### Section 1. General Configuration
23 ### ==========================================================================
24
25 ### Executable name
26 EXE = stockfish
27
28 ### Installation dir definitions
29 PREFIX = /usr/local
30 BINDIR = $(PREFIX)/bin
31
32 ### Built-in benchmark for pgo-builds
33 PGOBENCH = ./$(EXE) bench 32 1 10 default depth
34
35 ### Object files
36 OBJS = application.o bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
37         misc.o move.o movegen.o history.o movepick.o search.o piece.o \
38         position.o direction.o tt.o uci.o ucioption.o \
39         mersenne.o book.o bitbase.o san.o benchmark.o timeman.o
40
41
42 ### ==========================================================================
43 ### Section 2. High-level Configuration
44 ### ==========================================================================
45 #
46 # flag                --- Comp switch --- Description
47 # ----------------------------------------------------------------------------
48 #
49 # debug = no/yes      --- -DNDEBUG    --- Enable/Disable debug mode
50 # optimize = yes/no   --- (-O3/-fast etc.) --- Enable/Disable optimizations
51 # arch = (name)       --- (-arch)     --- Target architecture
52 # os = (name)         ---             --- Target operating system
53 # bits = 64/32        --- -DIS_64BIT  --- 64-/32-bit operating system
54 # bigendian = no/yes  --- -DBIGENDIAN --- big/little-endian byte order
55 # prefetch = no/yes   --- -DUSE_PREFETCH  --- Use prefetch x86 asm-instruction
56 # bsfq = no/yes       --- -DUSE_BSFQ  --- Use bsfq x86_64 asm-instruction
57 #                                     --- (Works only with GCC and ICC 64-bit)
58 # popcnt = no/yes     --- -DUSE_POPCNT --- Use popcnt x86_64 asm-instruction
59 #
60 # Note that Makefile is space sensitive, so when adding new architectures
61 # or modifying existing flags, you have to make sure there are no extra spaces
62 # at the end of the line for flag values.
63
64 ### 2.1. General
65 debug = no
66 optimize = yes
67
68 ### 2.2 Architecture specific
69
70 # General-section
71 ifeq ($(ARCH),general-64)
72         arch = any
73         os = any
74         bits = 64
75         bigendian = no
76         prefetch = no
77         bsfq = no
78         popcnt = no
79 endif
80
81 ifeq ($(ARCH),general-32)
82         arch = any
83         os = any
84         bits = 32
85         bigendian = no
86         prefetch = no
87         bsfq = no
88         popcnt = no
89 endif
90
91 ifeq ($(ARCH),bigendian-64)
92         arch = any
93         os = any
94         bits = 64
95         bigendian = yes
96         prefetch = no
97         bsfq = no
98         popcnt = no
99 endif
100
101 ifeq ($(ARCH),bigendian-32)
102         arch = any
103         os = any
104         bits = 32
105         bigendian = yes
106         prefetch = no
107         bsfq = no
108         popcnt = no
109 endif
110
111 # x86-section
112 ifeq ($(ARCH),x86-64)
113         arch = x86_64
114         os = any
115         bits = 64
116         bigendian = no
117         prefetch = yes
118         bsfq = yes
119         popcnt = no
120 endif
121
122 ifeq ($(ARCH),x86-64-modern)
123         arch = x86_64
124         os = any
125         bits = 64
126         bigendian = no
127         prefetch = yes
128         bsfq = yes
129         popcnt = yes
130 endif
131
132 ifeq ($(ARCH),x86-32)
133         arch = i386
134         os = any
135         bits = 32
136         bigendian = no
137         prefetch = yes
138         bsfq = no
139         popcnt = no
140 endif
141
142 ifeq ($(ARCH),x86-32-old)
143         arch = i386
144         os = any
145         bits = 32
146         bigendian = no
147         prefetch = no
148         bsfq = no
149         popcnt = no
150 endif
151
152 # osx-section
153 ifeq ($(ARCH),osx-ppc-64)
154         arch = ppc64
155         os = osx
156         bits = 64
157         bigendian = yes
158         prefetch = no
159         bsfq = no
160         popcnt = no
161 endif
162
163 ifeq ($(ARCH),osx-ppc-32)
164         arch = ppc
165         os = osx
166         bits = 32
167         bigendian = yes
168         prefetch = no
169         bsfq = no
170         popcnt = no
171 endif
172
173 ifeq ($(ARCH),osx-x86-64)
174         arch = x86_64
175         os = osx
176         bits = 64
177         bigendian = no
178         prefetch = yes
179         bsfq = yes
180         popcnt = no
181 endif
182
183 ifeq ($(ARCH),osx-x86-32)
184         arch = i386
185         os = osx
186         bits = 32
187         bigendian = no
188         prefetch = yes
189         bsfq = no
190         popcnt = no
191 endif
192
193
194 ### ==========================================================================
195 ### Section 3. Low-level configuration
196 ### ==========================================================================
197
198 ### 3.1 Selecting compiler (default = gcc)
199 ifeq ($(COMP),)
200         COMP=gcc
201 endif
202
203 ifeq ($(COMP),gcc)
204         comp=gcc
205         CXX=g++
206         profile_prepare = gcc-profile-prepare
207         profile_make = gcc-profile-make
208         profile_use = gcc-profile-use
209         profile_clean = gcc-profile-clean
210 endif
211
212 ifeq ($(COMP),icc)
213         comp=icc
214         CXX=icpc
215         profile_prepare = icc-profile-prepare
216         profile_make = icc-profile-make
217         profile_use = icc-profile-use
218         profile_clean = icc-profile-clean
219 endif
220
221 ### 3.2 General compiler settings
222 CXXFLAGS = -g -Wall -Wcast-qual -ansi -fno-exceptions -fno-rtti $(EXTRACXXFLAGS)
223
224 ifeq ($(comp),gcc)
225         CXXFLAGS += -pedantic -Wno-long-long -Wextra
226 endif
227
228 ifeq ($(comp),icc)
229         CXXFLAGS += -wd383,869,981,10187,10188,11505,11503
230 endif
231
232 ifeq ($(os),osx)
233         CXXFLAGS += -arch $(arch)
234 endif
235
236 ### 3.3 General linker settings
237 LDFLAGS = -lpthread $(EXTRALDFLAGS)
238
239 ifeq ($(os),osx)
240         LDFLAGS += -arch $(arch)
241 endif
242
243 ### 3.4 Debugging
244 ifeq ($(debug),no)
245         CXXFLAGS += -DNDEBUG
246 endif
247
248 ### 3.5 Optimization
249 ifeq ($(optimize),yes)
250
251         ifeq ($(comp),gcc)
252                 CXXFLAGS += -O3
253
254                 ifeq ($(os),osx)
255                         ifeq ($(arch),i386)
256                                 CXXFLAGS += -mdynamic-no-pic
257                         endif
258                         ifeq ($(arch),x86_64)
259                                 CXXFLAGS += -mdynamic-no-pic
260                         endif
261                 endif
262         endif
263
264         ifeq ($(comp),icc)
265                 CXXFLAGS += -fast
266
267                 ifeq ($(os),osx)
268                         CXXFLAGS += -mdynamic-no-pic
269                 endif
270         endif
271 endif
272
273 ### 3.6. Bits
274 ifeq ($(bits),64)
275         CXXFLAGS += -DIS_64BIT
276 endif
277
278 ### 3.7 Endianess
279 ifeq ($(bigendian),yes)
280         CXXFLAGS += -DBIGENDIAN
281 endif
282
283 ### 3.8 prefetch
284 ifeq ($(prefetch),yes)
285         CXXFLAGS += -msse
286         DEPENDFLAGS += -msse
287 else
288         CXXFLAGS += -DNO_PREFETCH
289 endif
290
291 ### 3.9 bsfq
292 ifeq ($(bsfq),yes)
293         CXXFLAGS += -DUSE_BSFQ
294 endif
295
296 ### 3.10 popcnt
297 ifeq ($(popcnt),yes)
298         CXXFLAGS += -DUSE_POPCNT
299 endif
300
301 ### ==========================================================================
302 ### Section 4. Public targets
303 ### ==========================================================================
304
305 default:
306         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) build
307
308 help:
309         @echo ""
310         @echo "To compile stockfish, type: "
311         @echo ""
312         @echo "make target ARCH=arch [COMP=comp]"
313         @echo ""
314         @echo "Supported targets:"
315         @echo ""
316         @echo "build                > Build unoptimized version"
317         @echo "profile-build        > Build PGO-optimized version"
318         @echo "popcnt-profile-build > Build PGO-optimized version with optional popcnt-support"
319         @echo "strip                > Strip executable"
320         @echo "install              > Install executable"
321         @echo "clean                > Clean up"
322         @echo "testrun              > Make sample run"
323         @echo ""
324         @echo "Supported archs:"
325         @echo ""
326         @echo "x86-64               > x86 64-bit"
327         @echo "x86-64-modern        > x86 64-bit with runtime support for popcnt-instruction"
328         @echo "x86-32               > x86 32-bit excluding very old hardware without SSE-support"
329         @echo "x86-32-old           > x86 32-bit including also very old hardware"
330         @echo "osx-ppc-64           > PPC-Mac OS X 64 bit"
331         @echo "osx-ppc-32           > PPC-Mac OS X 32 bit"
332         @echo "osx-x86-64           > x86-Mac OS X 64 bit"
333         @echo "osx-x86-32           > x86-Mac OS X 32 bit"
334         @echo "general-64           > unspecified 64-bit"
335         @echo "general-32           > unspecified 32-bit"
336         @echo "bigendian-64         > unspecified 64-bit with bigendian byte order"
337         @echo "bigendian-32         > unspecified 32-bit with bigendian byte order"
338         @echo ""
339         @echo "Supported comps:"
340         @echo ""
341         @echo "gcc                  > Gnu compiler (default)"
342         @echo "icc                  > Intel compiler"
343         @echo ""
344         @echo "Non-standard targets:"
345         @echo ""
346         @echo "make hpux           >  Compile for HP-UX. Compiler = aCC"
347         @echo ""
348         @echo "Examples. If you don't know what to do, you likely want to run: "
349         @echo ""
350         @echo "make profile-build ARCH=x86-64    (This is for 64-bit systems)"
351         @echo "make profile-build ARCH=x86-32    (This is for 32-bit systems)"
352         @echo ""
353
354 build:
355         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
356         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
357
358 profile-build:
359         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
360         @echo ""
361         @echo "Step 0/4. Preparing for profile build."
362         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_prepare)
363         @echo ""
364         @echo "Step 1/4. Building executable for benchmark ..."
365         @touch *.cpp *.h
366         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_make)
367         @echo ""
368         @echo "Step 2/4. Running benchmark for pgo-build ..."
369         @$(PGOBENCH) > /dev/null
370         @echo ""
371         @echo "Step 3/4. Building final executable ..."
372         @touch *.cpp
373         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
374         @echo ""
375         @echo "Step 4/4. Deleting profile data ..."
376         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_clean)
377
378 popcnt-profile-build:
379         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
380         @echo ""
381         @echo "Step 0/6. Preparing for profile build."
382         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_prepare)
383         @echo ""
384         @echo "Step 1/6. Building executable for benchmark (popcnt disabled)..."
385         @touch *.cpp *.h
386         $(MAKE) ARCH=x86-64 COMP=$(COMP) $(profile_make)
387         @echo ""
388         @echo "Step 2/6. Running benchmark for pgo-build (popcnt disabled)..."
389         @$(PGOBENCH) > /dev/null
390         @echo ""
391         @echo "Step 3/6. Building executable for benchmark (popcnt enabled)..."
392         @touch *.cpp *.h
393         $(MAKE) ARCH=x86-64-modern COMP=$(COMP) $(profile_make)
394         @echo ""
395         @echo "Step 4/6. Running benchmark for pgo-build (popcnt enabled)..."
396         @$(PGOBENCH) > /dev/null
397         @echo ""
398         @echo "Step 5/6. Building final executable ..."
399         @touch *.cpp *.h
400         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
401         @echo ""
402         @echo "Step 6/6. Deleting profile data ..."
403         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_clean)
404         @echo ""
405
406 strip:
407         strip $(EXE)
408
409 install:
410         -mkdir -p -m 755 $(BINDIR)
411         -cp $(EXE) $(BINDIR)
412         -strip $(BINDIR)/$(EXE)
413
414 clean:
415         $(RM) $(EXE) *.o .depend *~ core bench.txt *.gcda
416
417 testrun:
418         @$(PGOBENCH)
419
420 ### ==========================================================================
421 ### Section 5. Private targets
422 ### ==========================================================================
423
424 all: $(EXE) .depend
425
426 config-sanity:
427         @echo ""
428         @echo "Config:"
429         @echo "debug: '$(debug)'"
430         @echo "optimize: '$(optimize)'"
431         @echo "arch: '$(arch)'"
432         @echo "os: '$(os)'"
433         @echo "bits: '$(bits)'"
434         @echo "bigendian: '$(bigendian)'"
435         @echo "prefetch: '$(prefetch)'"
436         @echo "bsfq: '$(bsfq)'"
437         @echo "popcnt: '$(popcnt)'"
438         @echo ""
439         @echo "Flags:"
440         @echo "CXX: $(CXX)"
441         @echo "CXXFLAGS: $(CXXFLAGS)"
442         @echo "LDFLAGS: $(LDFLAGS)"
443         @echo ""
444         @echo "Testing config sanity. If this fails, try 'make help' ..."
445         @echo ""
446         @test "$(debug)" = "yes" || test "$(debug)" = "no"
447         @test "$(optimize)" = "yes" || test "$(optimize)" = "no"
448         @test "$(arch)" = "any" || test "$(arch)" = "x86_64" || test "$(arch)" = "i386" || \
449          test "$(arch)" = "ppc64" || test "$(arch)" = "ppc"
450         @test "$(os)" = "any" || test "$(os)" = "osx"
451         @test "$(bits)" = "32" || test "$(bits)" = "64"
452         @test "$(bigendian)" = "yes" || test "$(bigendian)" = "no"
453         @test "$(prefetch)" = "yes" || test "$(prefetch)" = "no"
454         @test "$(bsfq)" = "yes" || test "$(bsfq)" = "no"
455         @test "$(popcnt)" = "yes" || test "$(popcnt)" = "no"
456         @test "$(comp)" = "gcc" || test "$(comp)" = "icc"
457
458 $(EXE): $(OBJS)
459         $(CXX) -o $@ $(OBJS) $(LDFLAGS)
460
461 gcc-profile-prepare:
462         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) gcc-profile-clean
463
464 gcc-profile-make:
465         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
466         EXTRACXXFLAGS='-fprofile-generate' \
467         EXTRALDFLAGS='-lgcov' \
468         all
469
470 gcc-profile-use:
471         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
472         EXTRACXXFLAGS='-fprofile-use' \
473         all
474
475 gcc-profile-clean:
476         @rm -rf *.gcda *.gcno bench.txt
477
478 icc-profile-prepare:
479         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) icc-profile-clean
480         @mkdir profdir
481
482 icc-profile-make:
483         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
484         EXTRACXXFLAGS='-prof-gen=srcpos -prof_dir ./profdir' \
485         all
486
487 icc-profile-use:
488         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
489         EXTRACXXFLAGS='-prof_use -prof_dir ./profdir' \
490         all
491
492 icc-profile-clean:
493         @rm -rf profdir bench.txt
494
495 .depend:
496         -@$(CXX) $(DEPENDFLAGS) -MM $(OBJS:.o=.cpp) > $@ 2> /dev/null
497
498 -include .depend
499
500
501 ### ==========================================================================
502 ### Section 6. Non-standard targets
503 ### ==========================================================================
504
505 hpux:
506         $(MAKE) \
507         CXX='/opt/aCC/bin/aCC -AA +hpxstd98 -DBIGENDIAN -mt +O3 -DNDEBUG -DNO_PREFETCH' \
508         CXXFLAGS="" \
509         LDFLAGS="" \
510         all
511