X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2FMakefile;h=fd92838424ab7c001fe7d7f980058313f2d3cb7f;hp=e7c2c964fcb22f3f9aed3ab19999cda461a74808;hb=27ba611a3da37423a3502e49beeebe11c9a11d8e;hpb=ca464fc89e91947367a86a0e53befcb027960e2e diff --git a/src/Makefile b/src/Makefile index e7c2c964..fd928384 100644 --- a/src/Makefile +++ b/src/Makefile @@ -155,9 +155,11 @@ ifeq ($(COMP),gcc) ifeq ($(ARCH),armv7) ifeq ($(OS),Android) CXXFLAGS += -m$(bits) + LDFLAGS += -m$(bits) endif else CXXFLAGS += -m$(bits) + LDFLAGS += -m$(bits) endif ifneq ($(KERNEL),Darwin) @@ -215,10 +217,15 @@ endif ifeq ($(comp),icc) profile_make = icc-profile-make profile_use = icc-profile-use +else +ifeq ($(comp),clang) + profile_make = clang-profile-make + profile_use = clang-profile-use else profile_make = gcc-profile-make profile_use = gcc-profile-use endif +endif ifeq ($(KERNEL),Darwin) CXXFLAGS += -arch $(arch) -mmacosx-version-min=10.9 @@ -414,7 +421,8 @@ help: .PHONY: help build profile-build strip install clean objclean profileclean help \ - config-sanity icc-profile-use icc-profile-make gcc-profile-use gcc-profile-make + config-sanity icc-profile-use icc-profile-make gcc-profile-use gcc-profile-make \ + clang-profile-use clang-profile-make build: config-sanity $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all @@ -444,7 +452,7 @@ install: #clean all clean: objclean profileclean - @rm -f .depend *~ core + @rm -f .depend *~ core # clean binaries and objects objclean: @@ -454,6 +462,7 @@ objclean: profileclean: @rm -rf profdir @rm -f bench.txt *.gcda ./syzygy/*.gcda *.gcno ./syzygy/*.gcno + @rm -f stockfish.profdata *.profraw default: help @@ -501,6 +510,19 @@ config-sanity: $(EXE): $(OBJS) $(CXX) -o $@ $(OBJS) $(LDFLAGS) +clang-profile-make: + $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \ + EXTRACXXFLAGS='-fprofile-instr-generate ' \ + EXTRALDFLAGS=' -fprofile-instr-generate' \ + all + +clang-profile-use: + llvm-profdata merge -output=stockfish.profdata *.profraw + $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \ + EXTRACXXFLAGS='-fprofile-instr-use=stockfish.profdata' \ + EXTRALDFLAGS='-fprofile-use ' \ + all + gcc-profile-make: $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \ EXTRACXXFLAGS='-fprofile-generate' \