Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix OS X compilation error fix #35 (also an issue on Linux) #37

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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=i686-w64-mingw32-g++-posix
make clean
make -j4
mv shallowblue shallowblue_x86-64.exe
Expand Down
1 change: 1 addition & 0 deletions src/option.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define OPTIONMANAGER_H

#include <map>
#include <string>

/**
* @brief Type of callback function for when an option is changed
Expand Down
1 change: 1 addition & 0 deletions src/uci.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <fstream>
#include <memory>


/**
* @brief Class for handling UCI input/output.
*/
Expand Down