]> git.sesse.net Git - stockfish/commitdiff
Revert "Fix for Cygwin's environment build-profile"
authorStéphane Nicolet <cassio@free.fr>
Thu, 17 Jun 2021 16:09:42 +0000 (18:09 +0200)
committerStéphane Nicolet <cassio@free.fr>
Thu, 17 Jun 2021 16:10:01 +0000 (18:10 +0200)
This reverts commit "Fix for Cygwin's environment build-profile", as it was
giving errors for "make clean" on some Windows environments. See comments in
https://github.com/official-stockfish/Stockfish/commit/68bf362ea2385a641be9f5ed9ce2acdf55a1ecf1

Possibly somebody can propose a solution that would fix Cygwin builds and
not break on other system too, stay tuned! :-)

No functional change

AUTHORS
src/Makefile

diff --git a/AUTHORS b/AUTHORS
index 1334844fc6b6de700b1a76f9b12c2d69f9280578..7e63591a3b8c8632cc6e82303067873aa0910f50 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -23,7 +23,6 @@ Alfredo Menezes (lonfom169)
 Ali AlZhrani (Cooffe)
 Andrew Grant (AndyGrant)
 Andrey Neporada (nepal)
-Andreï Vetrov (proukornew)
 Andy Duplain
 Antoine Champion (antoinechampion)
 Aram Tumanian (atumanian)
index 9508e18be46400df77e7e4c4453975741c444b1f..33a270fe19f3c276272b31c3566836d147902210 100644 (file)
@@ -884,13 +884,13 @@ clang-profile-use:
 
 gcc-profile-make:
        $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
-       EXTRACXXFLAGS='-fprofile-generate="./"' \
+       EXTRACXXFLAGS='-fprofile-generate' \
        EXTRALDFLAGS='-lgcov' \
        all
 
 gcc-profile-use:
        $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
-       EXTRACXXFLAGS='-fprofile-use="./" -fno-peel-loops -fno-tracer' \
+       EXTRACXXFLAGS='-fprofile-use -fno-peel-loops -fno-tracer' \
        EXTRALDFLAGS='-lgcov' \
        all