]> git.sesse.net Git - stockfish/blob - src/Makefile
Fix build failure on GCC
[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
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 -fno-exceptions -fno-rtti $(EXTRACXXFLAGS)
223
224 ifeq ($(comp),icc)
225         CXXFLAGS += -wd383,869,981,10187,10188,11505,11503
226 endif
227
228 ifeq ($(os),osx)
229         CXXFLAGS += -arch $(arch)
230 endif
231
232 ### 3.3 General linker settings
233 LDFLAGS = -lpthread $(EXTRALDFLAGS)
234
235 ifeq ($(os),osx)
236         LDFLAGS += -arch $(arch)
237 endif
238
239 ### 3.4 Debugging
240 ifeq ($(debug),no)
241         CXXFLAGS += -DNDEBUG
242 endif
243
244 ### 3.5 Optimization
245 ifeq ($(optimize),yes)
246
247         ifeq ($(comp),gcc)
248                 CXXFLAGS += -O3
249
250                 ifeq ($(os),osx)
251                         ifeq ($(arch),i386)
252                                 CXXFLAGS += -mdynamic-no-pic
253                         endif
254                         ifeq ($(arch),x86_64)
255                                 CXXFLAGS += -mdynamic-no-pic
256                         endif
257                 endif
258         endif
259
260         ifeq ($(comp),icc)
261                 CXXFLAGS += -fast
262
263                 ifeq ($(os),osx)
264                         CXXFLAGS += -mdynamic-no-pic
265                 endif
266         endif
267 endif
268
269 ### 3.6. Bits
270 ifeq ($(bits),64)
271         CXXFLAGS += -DIS_64BIT
272 endif
273
274 ### 3.7 Endianess
275 ifeq ($(bigendian),yes)
276         CXXFLAGS += -DBIGENDIAN
277 endif
278
279 ### 3.8 prefetch
280 ifeq ($(prefetch),yes)
281         CXXFLAGS += -msse
282         DEPENDFLAGS += -msse
283 else
284         CXXFLAGS += -DNO_PREFETCH
285 endif
286
287 ### 3.9 bsfq
288 ifeq ($(bsfq),yes)
289         CXXFLAGS += -DUSE_BSFQ
290 endif
291
292 ### 3.10 popcnt
293 ifeq ($(popcnt),yes)
294         CXXFLAGS += -DUSE_POPCNT
295 endif
296
297 ### ==========================================================================
298 ### Section 4. Public targets
299 ### ==========================================================================
300
301 default:
302         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) build
303
304 help:
305         @echo ""
306         @echo "To compile stockfish, type: "
307         @echo ""
308         @echo "make target ARCH=arch [COMP=comp]"
309         @echo ""
310         @echo "Supported targets:"
311         @echo ""
312         @echo "build                > Build unoptimized version"
313         @echo "profile-build        > Build PGO-optimized version"
314         @echo "popcnt-profile-build > Build PGO-optimized version with optional popcnt-support"
315         @echo "strip                > Strip executable"
316         @echo "install              > Install executable"
317         @echo "clean                > Clean up"
318         @echo "testrun              > Make sample run"
319         @echo ""
320         @echo "Supported archs:"
321         @echo ""
322         @echo "x86-64               > x86 64-bit"
323         @echo "x86-64-modern        > x86 64-bit with runtime support for popcnt-instruction"
324         @echo "x86-32               > x86 32-bit excluding very old hardware without SSE-support"
325         @echo "x86-32-old           > x86 32-bit including also very old hardware"
326         @echo "osx-ppc-64           > PPC-Mac OS X 64 bit"
327         @echo "osx-ppc-32           > PPC-Mac OS X 32 bit"
328         @echo "osx-x86-64           > x86-Mac OS X 64 bit"
329         @echo "osx-x86-32           > x86-Mac OS X 32 bit"
330         @echo "general-64           > unspecified 64-bit"
331         @echo "general-32           > unspecified 32-bit"
332         @echo "bigendian-64         > unspecified 64-bit with bigendian byte order"
333         @echo "bigendian-32         > unspecified 32-bit with bigendian byte order"
334         @echo ""
335         @echo "Supported comps:"
336         @echo ""
337         @echo "gcc                  > Gnu compiler (default)"
338         @echo "icc                  > Intel compiler"
339         @echo ""
340         @echo "Non-standard targets:"
341         @echo ""
342         @echo "make hpux           >  Compile for HP-UX. Compiler = aCC"
343         @echo ""
344         @echo "Examples. If you don't know what to do, you likely want to run: "
345         @echo ""
346         @echo "make profile-build ARCH=x86-64    (This is for 64-bit systems)"
347         @echo "make profile-build ARCH=x86-32    (This is for 32-bit systems)"
348         @echo ""
349
350 build:
351         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
352         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
353
354 profile-build:
355         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
356         @echo ""
357         @echo "Step 0/4. Preparing for profile build."
358         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_prepare)
359         @echo ""
360         @echo "Step 1/4. Building executable for benchmark ..."
361         @touch *.cpp *.h
362         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_make)
363         @echo ""
364         @echo "Step 2/4. Running benchmark for pgo-build ..."
365         @$(PGOBENCH) > /dev/null
366         @echo ""
367         @echo "Step 3/4. Building final executable ..."
368         @touch *.cpp
369         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
370         @echo ""
371         @echo "Step 4/4. Deleting profile data ..."
372         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_clean)
373
374 popcnt-profile-build:
375         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
376         @echo ""
377         @echo "Step 0/6. Preparing for profile build."
378         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_prepare)
379         @echo ""
380         @echo "Step 1/6. Building executable for benchmark (popcnt disabled)..."
381         @touch *.cpp *.h
382         $(MAKE) ARCH=x86-64 COMP=$(COMP) $(profile_make)
383         @echo ""
384         @echo "Step 2/6. Running benchmark for pgo-build (popcnt disabled)..."
385         @$(PGOBENCH) > /dev/null
386         @echo ""
387         @echo "Step 3/6. Building executable for benchmark (popcnt enabled)..."
388         @touch *.cpp *.h
389         $(MAKE) ARCH=x86-64-modern COMP=$(COMP) $(profile_make)
390         @echo ""
391         @echo "Step 4/6. Running benchmark for pgo-build (popcnt enabled)..."
392         @$(PGOBENCH) > /dev/null
393         @echo ""
394         @echo "Step 5/6. Building final executable ..."
395         @touch *.cpp *.h
396         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
397         @echo ""
398         @echo "Step 6/6. Deleting profile data ..."
399         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_clean)
400         @echo ""
401
402 strip:
403         strip $(EXE)
404
405 install:
406         -mkdir -p -m 755 $(BINDIR)
407         -cp $(EXE) $(BINDIR)
408         -strip $(BINDIR)/$(EXE)
409
410 clean:
411         $(RM) $(EXE) *.o .depend *~ core bench.txt *.gcda
412
413 testrun:
414         @$(PGOBENCH)
415
416 ### ==========================================================================
417 ### Section 5. Private targets
418 ### ==========================================================================
419
420 all: $(EXE) .depend
421
422 config-sanity:
423         @echo ""
424         @echo "Config:"
425         @echo "debug: '$(debug)'"
426         @echo "optimize: '$(optimize)'"
427         @echo "arch: '$(arch)'"
428         @echo "os: '$(os)'"
429         @echo "bits: '$(bits)'"
430         @echo "bigendian: '$(bigendian)'"
431         @echo "prefetch: '$(prefetch)'"
432         @echo "bsfq: '$(bsfq)'"
433         @echo "popcnt: '$(popcnt)'"
434         @echo ""
435         @echo "Flags:"
436         @echo "CXX: $(CXX)"
437         @echo "CXXFLAGS: $(CXXFLAGS)"
438         @echo "LDFLAGS: $(LDFLAGS)"
439         @echo ""
440         @echo "Testing config sanity. If this fails, try 'make help' ..."
441         @echo ""
442         @test "$(debug)" = "yes" || test "$(debug)" = "no"
443         @test "$(optimize)" = "yes" || test "$(optimize)" = "no"
444         @test "$(arch)" = "any" || test "$(arch)" = "x86_64" || test "$(arch)" = "i386" || \
445          test "$(arch)" = "ppc64" || test "$(arch)" = "ppc"
446         @test "$(os)" = "any" || test "$(os)" = "osx"
447         @test "$(bits)" = "32" || test "$(bits)" = "64"
448         @test "$(bigendian)" = "yes" || test "$(bigendian)" = "no"
449         @test "$(prefetch)" = "yes" || test "$(prefetch)" = "no"
450         @test "$(bsfq)" = "yes" || test "$(bsfq)" = "no"
451         @test "$(popcnt)" = "yes" || test "$(popcnt)" = "no"
452         @test "$(comp)" = "gcc" || test "$(comp)" = "icc"
453
454 $(EXE): $(OBJS)
455         $(CXX) -o $@ $(OBJS) $(LDFLAGS)
456
457 gcc-profile-prepare:
458         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) gcc-profile-clean
459
460 gcc-profile-make:
461         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
462         EXTRACXXFLAGS='-fprofile-generate' \
463         EXTRALDFLAGS='-lgcov' \
464         all
465
466 gcc-profile-use:
467         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
468         EXTRACXXFLAGS='-fprofile-use' \
469         all
470
471 gcc-profile-clean:
472         @rm -rf *.gcda *.gcno bench.txt
473
474 icc-profile-prepare:
475         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) icc-profile-clean
476         @mkdir profdir
477
478 icc-profile-make:
479         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
480         EXTRACXXFLAGS='-prof-gen=srcpos -prof_dir ./profdir' \
481         all
482
483 icc-profile-use:
484         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
485         EXTRACXXFLAGS='-prof_use -prof_dir ./profdir' \
486         all
487
488 icc-profile-clean:
489         @rm -rf profdir bench.txt
490
491 .depend:
492         -@$(CXX) $(DEPENDFLAGS) -MM $(OBJS:.o=.cpp) > $@ 2> /dev/null
493
494 -include .depend
495
496
497 ### ==========================================================================
498 ### Section 6. Non-standard targets
499 ### ==========================================================================
500
501 hpux:
502         $(MAKE) \
503         CXX='/opt/aCC/bin/aCC -AA +hpxstd98 -DBIGENDIAN -mt +O3 -DNDEBUG -DNO_PREFETCH' \
504         CXXFLAGS="" \
505         LDFLAGS="" \
506         all
507