Skip to content

Commit

Permalink
update to macOS 13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fucusy committed Dec 31, 2023
1 parent 5130375 commit dbea3ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ open url: http://127.0.0.1/web/gomoku.html

# Requirement
System
- Linux/macOS, Tested in ubuntu 18.04, macOS 10.15.4
- Linux/macOS, Tested in ubuntu 18.04, macOS 13.6

Language
- Python 3.x, Tested in 3.9.0, `conda create --name gomoku python=3.9`
Expand Down
2 changes: 1 addition & 1 deletion problem_solve.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
clang++ -std=c++17 -stdlib=libc++ -Wall -pedantic *.cpp -o noninteractive -DCLI -DTEST -DNOINTERACTIVE -DLOADCACHE
elif [[ "$OSTYPE" == "darwin"* ]]; then
echo "I am mac"
g++ *.cpp -o noninteractive -std=c++17 -DFIND_FROM_DB -DNOINTERACTIVE $flag -DCLI -DTEST `pkg-config --cflags --libs protobuf` -I/usr/local/Cellar/rocksdb@6/6.29.4/include -lsnappy -lgflags -lz -lbz2 -llz4 -lzstd /usr/local/Cellar/jemalloc/5.3.0/lib/libjemalloc_pic.a /usr/local/Cellar/rocksdb@6/6.29.4/lib/librocksdb.a
g++ *.cpp -o noninteractive -std=c++17 -DFIND_FROM_DB -DNOINTERACTIVE $flag -DCLI -DTEST `pkg-config --cflags --libs protobuf` -I/opt/homebrew/opt/rocksdb@6/include -lsnappy -lgflags -lz -lbz2 -llz4 -lzstd /opt/homebrew/opt/rocksdb@6/lib/librocksdb.a
else
echo "this platform is not supported"
fi
Expand Down

0 comments on commit dbea3ba

Please sign in to comment.