From 8e8420ebd522763ba72b600a367137f2d5df2157 Mon Sep 17 00:00:00 2001 From: OggyP Date: Fri, 2 Sep 2022 22:10:27 +1000 Subject: [PATCH 1/5] fix OS X compilation error fix #35 (also an issue on Linux) --- src/option.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/option.h b/src/option.h index dff8021..65052a0 100644 --- a/src/option.h +++ b/src/option.h @@ -2,6 +2,7 @@ #define OPTIONMANAGER_H #include +#include /** * @brief Type of callback function for when an option is changed From 613f47399c7b1146cc66ebc10d4085cf19d3c992 Mon Sep 17 00:00:00 2001 From: OggyP Date: Tue, 6 Sep 2022 22:50:22 +1000 Subject: [PATCH 2/5] hui --- build_windows.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_windows.sh b/build_windows.sh index 648c05e..152cfb6 100755 --- a/build_windows.sh +++ b/build_windows.sh @@ -4,14 +4,14 @@ export CC_FLAGS="-Wall -std=c++11 -O3 -flto -pthread -mtune=generic -fno-exceptions -static" export LD_FLAGS="-pthread -flto -static" -export CXX=x86_64-w64-mingw32-g++-posix +export CXX=g++-mingw-w64-i686 make clean make -j4 mv shallowblue shallowblue_x86-64.exe export CC_FLAGS="-Wall -std=c++11 -O3 -flto -pthread -mtune=generic -static -m32" export LD_FLAGS="-pthread -flto -static -m32" -export CXX=i686-w64-mingw32-g++-posix +export CXX=g++-mingw-w64-i686 make clean make -j4 mv shallowblue shallowblue_x86.exe From 3ffdcd3e9be42b09f81ccedeb4aef43680ac3e65 Mon Sep 17 00:00:00 2001 From: OggyP Date: Tue, 6 Sep 2022 22:51:43 +1000 Subject: [PATCH 3/5] ling --- build_windows.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_windows.sh b/build_windows.sh index 152cfb6..165271a 100755 --- a/build_windows.sh +++ b/build_windows.sh @@ -4,14 +4,14 @@ export CC_FLAGS="-Wall -std=c++11 -O3 -flto -pthread -mtune=generic -fno-exceptions -static" export LD_FLAGS="-pthread -flto -static" -export CXX=g++-mingw-w64-i686 +export CXX=i686-w64-mingw32-g++ make clean make -j4 mv shallowblue shallowblue_x86-64.exe export CC_FLAGS="-Wall -std=c++11 -O3 -flto -pthread -mtune=generic -static -m32" export LD_FLAGS="-pthread -flto -static -m32" -export CXX=g++-mingw-w64-i686 +export CXX=i686-w64-mingw32-g++ make clean make -j4 mv shallowblue shallowblue_x86.exe From af53da9bdb374b609cd86546787fa914ec66d1a9 Mon Sep 17 00:00:00 2001 From: OggyP Date: Tue, 6 Sep 2022 22:55:12 +1000 Subject: [PATCH 4/5] lingasdf --- src/uci.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/uci.h b/src/uci.h index c0a67de..b85e515 100644 --- a/src/uci.h +++ b/src/uci.h @@ -9,6 +9,8 @@ #include #include #include +#include + /** * @brief Class for handling UCI input/output. From 92849bfef5ea47797ea93fe230a282ee12df6c01 Mon Sep 17 00:00:00 2001 From: Oscar Date: Wed, 7 Sep 2022 16:26:02 +1000 Subject: [PATCH 5/5] fixing hui --- build_windows.sh | 4 ++-- src/uci.h | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/build_windows.sh b/build_windows.sh index 165271a..794e04f 100755 --- a/build_windows.sh +++ b/build_windows.sh @@ -4,14 +4,14 @@ export CC_FLAGS="-Wall -std=c++11 -O3 -flto -pthread -mtune=generic -fno-exceptions -static" export LD_FLAGS="-pthread -flto -static" -export CXX=i686-w64-mingw32-g++ +export CXX=i686-w64-mingw32-g++-posix make clean make -j4 mv shallowblue shallowblue_x86-64.exe export CC_FLAGS="-Wall -std=c++11 -O3 -flto -pthread -mtune=generic -static -m32" export LD_FLAGS="-pthread -flto -static -m32" -export CXX=i686-w64-mingw32-g++ +export CXX=i686-w64-mingw32-g++-posix make clean make -j4 mv shallowblue shallowblue_x86.exe diff --git a/src/uci.h b/src/uci.h index b85e515..a7486a9 100644 --- a/src/uci.h +++ b/src/uci.h @@ -9,7 +9,6 @@ #include #include #include -#include /**